getItem

returns the data object of a property by its ID

object getItem(string id);
idstringthe name of the property
objectthe data object of the property

Example

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

Details

Each data object has id, value, label attributes and all extra data that were defined during configuration.

Back to top