Hi Admin,
Thanks for the answer but looks like we cannot call any custom methods of our component from the this function createeditor
.
createeditor: (row: number, cellvalue: any, editor: any): void => {
editor.jqxDateTimeInput();
editor.on('change',function(event){
this.testMethod(); // Error here
this.grid.endrowedit(row, 'dateColumn', false); // Error Here
});
}
I’m trying to save the row once the date is selected but unable to do it.