if i have a html template textbox in one column of a row in datatable.on change of some textbox value how to get entire row json of datatable.
can anyone help.
Many thanks in adv.
if i have a html template textbox in one column of a row in datatable.on change of some textbox value how to get entire row json of datatable.
can anyone help.
Many thanks in adv.
You can use something like follows
var row = table.getItem(id);
As for onchange handling, if you are embedding native HTML inputs in the cells of datatable, there is no any webix specific way to handle onchange events. Webix uses different editing mode, when editor is activated on click of cell, in such case there are a bunch of edit related events that can be used to track a changes.