dhxCalendar not entering value

Hello
I have a page identical to another that has a cell type of dhxCalendar and enters value when pick, however this problem page does not. I guarantee that all the necessary files are included and cannot understand why on value is entered.

Also there once was a technique to restrict the values in a range and <> a starting date. Where is that? Using ver3. Thank you.

Unfortunately your issue is not clear.
Please, provide with any kind of sample of your code and screenshots describing the issue.

Thank you for such a quick response, I need a longer half-life to ask the question.
The first problem was fixed by not returning true in the onEdit event.

However there still is a question of the syntax necessary to restrict the “pickable” from before a date or within a date range. Can you/anyone help with that? Thank you.

Please, try to use the setInsensitiveDays(), setInsensitiveRange() methods:
docs.dhtmlx.com/doku.php?id=dhtm … sitivedays
docs.dhtmlx.com/doku.php?id=dhtm … itiverange

You may call the methods from the onDhxCalendarCreated event.
For example:

mygrid.attachEvent("onDhxCalendarCreated", function(myCal){ myCal.setInsensitiveRange("2011-07-08",null); })