I need to create a column of buttons inside my Webix datatable. I can customize a simple html-button, like this:
webix.ui({
view:"datatable",
columns:[
. . .
{ id: "button1",
template: "<button class='custom_css'>Click Me!</button>",
width:70 }
],
onClick:{
button1: function(ev, id){
. . .
}
}
});
but after all it's not as convenient as I would like.
I wonder if there's another way to do such thing?