an alias for refresh, repaints the property view
var item = property.getItem("width");
item.value = "new one";
property.updateItem("width"); //same as property.refresh();
updateItem was created for API compatibility with data components.
Back to top