datatable editor:"select" - disabled items

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…

Hi,

Yes, there’s a possibility to extend the select editor where you need to redefine only its render function. Check the snippet http://webix.com/snippet/087e2076

Hi Helga,
Thanks for this!