You can’t really bind a raw data array to a datatable.
You can
load data from an array into datatable, and when you need the actual data, use a table.serialize() API to get the new array with actual values
load array into a datacollection, and bind any component to datacollection. To get the array with actual values, you will need to use collection.serialize() anyway
Binding a value to a form control.
DataValue and DataRecord can be used to bind values, but again, it has sense only if you want to use the value in multiple places and need to catch the moment when it changed.
If you need to show some value or record in the form, it will be better to load data directly into the form.
Thanks, excellent snippet!
would be awesome to have these indexed, it’s MUCH easier to figure out Webix using snippets - so much awesome functionality is probably never used because folks don’t know about it!
One more question: what is the canonical way to flash a cell in a datatable, e.g. like a table of stocks in which cells flash different colors depending on whether the price is increasing or decreasing?