editors.color¶
webix.editors.
color
¶webix.editors.color helper.
Please look into the linked official documentation.
External references¶
Code¶
1 2 3 4 5 6 7 8 9 | webix.editors.color = webix.extend({
focus :function(){},
popupType:"color",
popupInit:function(popup){
popup.getChildViews()[0].attachEvent("onSelect", function(value){
webix.callEvent("onEditEnd",[value]);
});
}
}, webix.editors.popup);
|