returns the data object of a property by its ID
id | string | the name of the property |
object | the data object of the property |
var record = property.getItem("width");
var title = record.value;
Each data object has id, value, label attributes and all extra data that were defined during configuration.
Back to top