fed-up with parent grid or column scope issues in webix custom edtiors

I am writing a custom editor in webix datatable, how can I access current column id or current grid details in $init ?.

is there any way?

case- I want to give separator dynamically. I mean for few column it’s ‘|’ and for few it will diff.

Here editor is multiselect.

Here my main problem is how to pass edtior config at column level (Each column might have diff configs for editors)?

Don’t know why editor width is not auto match with column?

Many bugs/enhancements needed in webix

Hello @webix_B_123,

I want to give separator dynamically. I mean for few column it’s ‘|’ and for few it will diff.

If I understand you correctly, you can use ‘template’ property to define cell content. Please check the next snippet:
https://snippet.webix.com/isvl6pg5

Don’t know why editor width is not auto match with column?
You can define separate settings for editor suggest box:

 editor:"customMultiSelect",
     suggest:{ 
      fitMaster:true,
       view:"checksuggest", 
       button:true 
     }

Please take a look at the example:
https://snippet.webix.com/hligaken