Treetable
How to fill values of child cells when changing the parent cell ?
There is onAfterEditStop event where you can place the code
http://docs.webix.com/api__link__ui.treetable_onaftereditstop_event.html
You can use this.data.eachChild to iterate through child items
http://docs.webix.com/api__treestore_eachchild.html
OK
How to redraw the cell values?
How to redraw the cell values without refreshing the page ?
grid.getItem(id).some = 123;
grid.refresh();
Thanks.
Everything works.
After redraw not only works math: (computing fields)
?
Try to use
grid.getItem(id).some = 123;
grid.updateItem(id);
It will repaint data and aslo trigger data updates ( math recalculation and data saving )
Thanks