Just saying, there may be an error in Wisej.Web.Ext.DevExtreme.dxDataGrid extension code

Answered
0
0

Just saying, there may be an error in Wisej.Web.Ext.DevExtreme.dxDataGrid extension code:

public dxDataGrid(object options) : base(“dxDataGrid”, options)
{
this.WiredEvents = new[] {
“keyDown”,
“rowClick”,
“cellClick”,
“rowDblClick”,
“cellDblClick”,
//”editingStarted”,
“editingStart”,
“selectionChanged”
};
}

Event is “editingStart”, not “editingStarted”. When I fixed the name, event began to fire.

Also I thing I can change the code to include all events I ever my need, right? 🙂

Without editing events component is useless for validation scenarios and useless for it main purpose – editing of data.

Best regards!

  • You must to post comments
Best Answer
0
0

Hi mgmst,

Thanks for letting us know! I’ll fix the extension and update GitHub.

And yes you have the source code available to make any and all changes you need to the extension!

Best,

Levie

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.