Categories | Question details Back To List | ||
How to enable the cell for entry of calendar values I'm trying to create a calendar cell type, where in addition to the popup, the user can key in the date. This will allow faster data-entry, as the popup is quire slow. Tried the following, but does not work. function eXcell_calEdit(cell){ this.base = eXcell_calendar; this.base(cell) this.editable = true; } eXcell_calEdit.prototype = new eXcell_calendar Answer posted on May 05, 2007 15:26 There is no easy way to make such exCell, both "calendar" and normal "ed" exCell build in the way, which are mutual exclusive. Basically to create a such "combined" exCell you need to merge the logic of .edit and .detach methods of both editors - that is not an easy task. Currently we preparing a additional pack of exCell, which will contain some additional excells including "editable date with custom formating" exCell. Answer posted by Andrei (Support) on Nov 28, 2014 07:27 Having solved the problem mentioned above, you may also look through the possible related problems with tabs ajax and weekly calendar schedule. |