Hi,
I would like to have some items of the select editor.
How can I have a clean solution to something like:
webix.editors = {
“select”:{
render:function(){
…
if (options.data && options.data.each)
options.data.each(function(obj){
html +="<option value=’"+obj.id+"’" + obj.disabled + " >"+obj.value+"";
});
…
I have added obj.disabled which comes from server side script…