• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Calendar Problem

 
Ranch Hand
Posts: 180
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
I have a calendar that has to take the time. The calendar pops up when we click the hyperlink but the data is not populated in the box. The other condition is I am iterating it and it should appear for the dynamic row.
On debugging, it shows that the value that goes to the JS function is [dataListIndexed[0].callReceiveTime] as there is a [.] separator the JS cannot resolve it.
Please help
---------------------------------
<% int counter=0;%>
<logic resent ....>
<logic:iterate id="row" name="myForm" property="myList">
<% String recive="dataListIndexed["+counter+"].gndTouchingTime"; %>
<html:text property="<%=recive%>" name="myForm" value=""/>
<A href="javascript:NewCal('<%=str%>','ddmmyyyy',true,24)">
<IMG border="0" src="../images/cal.gif" width="16" height="16"
border="0" alt="Pick a date"></A></td>
--------------------------
Regards,
Roshani
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic