name

indicates the name of the component (a read-only property)

string name;

Example

var data = new webix.DataValue({});
data.setValue("someValue");
 
var name = data.name; // returns 'DataValue'

Details

The hardcoded value of the property is "DataValue".

Back to top