defines which data item is editable (in case of several data item in the cell/line)
webix.ui({
view:"list",
template:"#id#.#name#",
editable:true,
editValue:"name",
...
})
Editvalue is defined for components containing more than one data item in its cell or record.
In the list above each record contains item ID and name, but only name is editable.
Back to top