set of functions, for custom property types
property.on_render["mycheckbox"] = function(value, config){
var start = "<input type='checkbox' class='webix_property_check' ";
return start+(value?"checked":"")+">";
}
Back to top