Hi support,
I am using date InlineEditor column. When I clear the value in Date column, I want to set empty value to it.
But now its again set the previous value.
gantt.ext.inlineEditors.attachEvent(“onBeforeSave”, function (state: any) {
if ( state.newValue == null) {
state.newValue=’’;
}
return true;
});
I added this code snippet , but it didn’t work.
Thanks,
Rasagb
}