I need to create a button column inside my webix datatable. I can configure a simple html button, for example:
webix.ui({ view:"datatable", columns:[ . . . { id: "button1", template: "<button class='custom_css'>Click Me!</button>", width:70 } ], onClick:{ button1: function(ev, id){ . . . } } });
but in the end it is not as convenient as we would like.
I wonder if there is another way to do such a thing?
user5528630
source share