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

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.