combo editor drop down list position

Hello all…
Can anybody plz tell me how can i automatically set the combo drop down list top as well as bottom on datatable component, after selecting the combo item from datatable the list get adjusted dynamically.

Hello, @Vaishnavi

This may be done in the onAfterEditStart, when an editor is created. You can get the instance of the active editor with the getEditor method and use popup.show(editor.getInputNode(), {pos:"top"}) to bind to the coordinates of an HTML element - an editor field or a datatable node. For the editor it will be like next: https://snippet.webix.com/gajrom0n

@AlenaLisava thank you…