Calendar eXcell
dhtmlxGrid allows you to add two types of dhtmlxCalendar control based calendars into your component:
- dhxCalendar - popup calendar
- dhxCalendarA - popup calendar with ability to input data manually
dhtmlxGrid allows you to add two types of dhtmlxCalendar control based calendars into your component:
<link rel="STYLESHEET" type="text/css" href="../../codebase/dhtmlxgrid.css"> <link rel="stylesheet" type="text/css" href="../../codebase/skins/dhtmlxgrid_dhx_skyblue.css"> <link rel="STYLESHEET" type="text/css" href="../../../dhtmlxCalendar/codebase/dhtmlxcalendar.css"> <script src="../../codebase/dhtmlxcommon.js"></script> <script src="../../codebase/dhtmlxgrid.js"></script> <script src="../../codebase/dhtmlxgridcell.js"></script> <script src="../../../dhtmlxCalendar/codebase/dhtmlxcalendar.js"></script> <script src="../../codebase/excells/dhtmlxgrid_excell_dhxcalendar.js"></script> <link rel="STYLESHEET" type="text/css" href="../../../dhtmlxCalendar/codebase/skins/dhtmlxcalendar_dhx_skyblue.css"> <div id="gridbox" style="width:503px;height:120px;background-color:white;"></div> <script></script>mygrid = new dhtmlXGridObject('gridbox'); mygrid.setImagePath("../../codebase/imgs/"); mygrid.setHeader("Name,Date of Birth, First Book Published"); mygrid.setInitWidths("*,100,100"); mygrid.setColAlign("left,center,center"); mygrid.setColTypes("ed,dhxCalendar,dhxCalendarA"); mygrid.setColSorting("str,date,date"); mygrid.setSkin("dhx_skyblue"); mygrid.init(); mygrid.loadXML("../common/grid_dates.xml");