stack overflow line: 1706
Brought to you by:
mishoo
I have followed the install instructions to set-up a new
calendar as a popup. This works ok, I am interested in
including time in the calendar - so add the options as
Calendar.setup(
{
inputField : "ends_at", // ID of the input field
ifFormat : "%Y-%m-%d %k:%M:%S", // the
date format
button : "f_trigger_b", // ID of the button
singleClick : true,
showsTime : true,
timeFormat : "12"
}
);
When you click on any of the time fields you get the
above error (stack overflow).
Logged In: YES
user_id=252309
I've got this error too: (using this in ASP.NET within a
usercontrol)
code:
<script type="text/javascript">
Calendar.setup
({inputField : 'GRDlist__ctl11_pcalDate_txtDate',
ifFormat : '%d-%m-%Y',
firstDay : 0,
weekNumbers : false,
button : 'GRDlist__ctl11_pcalDate_btnShow'
});
</script>
Any help would be appreciated