Documentation

getItem

gets the data object for related property

object getItem(string id);

Parameters

idstringname of property

Returns

objectthe data object for the property

Example

var record = property.getItem("width");
var title = record.value;

Details

Each data object has id, value, label attributes, it also will contain all extra data which was defined during configuration.

Back to top