I have used editor for select .I want to get values from it ,if I have used Id to get value then i got message getValue() method is undefind,can you give any sample how to get value from editor.there is any method simillar to getValue for editor.
Do you mean a editor in a datatable ?
Normally you can use events of datatable to catch the moment when editing is done, and new value is available.
http://docs.webix.com/api__editability_onbeforeeditstop_event.html
I have a requirement like this onChange of richselect/select value i have to call onChange attachedEvent and populate the value of another richselect filed value in a same row,First thing onChange attachedEvent is not suppoted for editor.its show the exception-- does not support attachedEvent method. there is any solution for this please give some sample.
The editor in the datatable is not a separate component, you can’t attach events to editor ( at least not in the normal way ) , but you can use events of master component ( datatable )
You can use onBeforeEditStop event to detect that edit operations was changed, and based on result of this operation change options in some other column of the datatable.