Categories | Question details Back To List | ||
Calendar I have a : <input name="calendar1" type="text"><img src="calendar.gif" onclick="openCalendar"> Then, I whould like to open calendarDhx clicking in IMG, and after choose a data, the element calendar1 should be updated. Someone can help me ? thanks. Joao Paulo. Answer posted by Support on Sep 23, 2008 01:50 You can add onClick handler for the calendar: //Js <script> var cal1 = new dhtmlxCalendarObject('calBox', true); //Event handler cal1.attachEvent ("onClick", function (date) {document.getElementById ('calendar1').value = cal1.getFormatedDate('%Y/%m/%d',date)}); function openCalendar () { cal1.isVisible () ? cal1.hide () : cal1.show (); } </script> //Html <div id="calBox"><input id="calendar1" name="calendar1" type="text"><img src="calendar.gif" onclick="openCalendar()"> |