hello Peter Stoev,
right now my column is like below
{ text : 'Start Date', id: 'startDatePopUp',datafield : 'startDate', columntype: 'datetimeinput', cellsformat: 'MMM yyyy', align : 'center', width : 150, cellsalign : 'center', validation: function (cell, value) { var flag = dateValidation(cell,value,"Start Date"); return flag; }, initeditor: function (row, cellvalue, editor) { editor.jqxDateTimeInput('setDate', new Date()); } }
am able to select the date. suppose i select a date and then i want that column to be blank and select the date and hit delete button, default date ‘Jan 1970’ is selected. but there is no option where i can remove the date once i selected. refreshing the page without saving is the only option i have.