Documentation

editValue

defines which data item is editable (in case of several data item in the cell/line)

string editValue;

Example

webix.ui({
    view:"list",
    template:"#id#.#name#",
    editable:true,
    editValue:"name",
    ...
})

See also

Details

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