Add Button with Popup to Datatable

I would like to add a Button that opens a popup in the final column for my data-table. I had used Bootstrap dropdowns in the old version of my data-table prior to migrating to Webix, but the height of each cell make the dropdown menu unusable. Any pointers? Thanks in advance.

Hello,

Maybe, editors can match your requirements.
Please check the sample with various types of editors: Code Snippet

Also, is possible to add a button to the column of datatable as

{
view:"datatable",
...
onClick:{
    "editBtn":function(){
      ...
    }
  }
...
}

And use show() method to open a popup.
Also, instead of popup there is a possibility to use ui.window as shown in the example: https://snippet.webix.com/dg0otsr2

Thank you for the response, Nastja. I’ll look into it.