indicates the name of the component (a read-only property)
var data = new webix.DataValue({});
data.setValue("someValue");
var name = data.name; // returns 'DataValue'
The hardcoded value of the property is "DataValue".
Back to top