about CheckBox in DataTable

if checkbox in datatable.
http://webix.com/snippet/b336796d
how can get/set the checkbox value,
like form from name:“xxx” getValues()

http://webix.com/snippet/c69e2dca define “checked” field in data and use config.data (or “data” variable, if you actually can access it)

Instead of config.data we recommend using the serialize() method.

In the above scenario, table.getItem(itemId).checked will return the value of a particular checkbox. Also, you can catch the onCheck event:

http://webix.com/snippet/6d0b632f

very very cool.