How to resize the editor view ?

Hi ,I have a data table view with richselect editor in the column.I want to adjust the editor view width based on the data (options) without affecting the column width.Can anyone please help out this?

http://webix.com/snippet/feb6124b

You can define separate settings for editor suggest box.

                  { id:"year",	editor:"richselect", suggest:{
                    fitMaster:false, width:100
                  }, options:years,

The updated snippet - http://webix.com/snippet/3e6feec6

Thanks Maksim,it is working fine,and I have to align this editor view to center of the column,how to do that?

There is no easy way.

You will need to extend a suggest component to provide new positioning mode, which is rather complicated. Still, if this is critical for your use-case, I can share some directions ( I don’t have ready to use solution )