Iam trying to make CF datepicker to work like jquery's datepicker i.e. show
calendar when textbox gets focus rather than user clicking on calender
icon/image.
You can test with this simple code
<cfform>
<cfinput type="datefield" name="txtDate">
</cfform>
Question is how to make calendar popup when textbox has focus. I played
with Firebug and Chromes dom inspector without any luck.I thought it would
as simple as calling a javascript function onfocus or onclick.
I can see calendar is basically a div with display set block when user
clicks on calendar img/icon. div is id txtDateCFForm_1_cf_container
with display:
block;
Any suggestions?
<Ajas Mohammed />