I was trying to use datefield component  to enter a date from builtin
calendar, but it showed a javascript error, this.pupup.clinePosition(...) is
null or not an object, when a calendar icon is clicked first time. 

sample Codes like this.

in tml file:

<tr>
<td>Birth Date:</td>
<td>
<input type="text" t:type="datefield"
t:value="dateOfBirth"/>
</td>
</tr>

in java codes:

@Persist
private Date dateOfBirth;
public Date getDateOfBirth()
{
return dateOfBirth;
}
public void setDateOfBirth(Date dateOfBirth)
{
this.dateOfBirth = dateOfBirth;
}

Can anybody tell me whether it is still a knowing issue or fixed already? If
it is still an issue,  what is the alternative solution?

Thanks,

David
-- 
View this message in context: 
http://www.nabble.com/T5.0.18-javascript-error-in-IE-on-a-datefield-tp24902769p24902769.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to