I was wondering what I need to do to style a button inside a datatable. I found some examples using “template” to add custom html to a table. Like this: http://webix.com/snippet/18e634d2
Can I add a webix button-view in a similar way? I want to keep the webix styling. I want to use a button like on this page: http://docs.webix.com/samples/16_skins/03_icons.html
First, you can use native Webix CSS styles from webix.css
But in that case, you still will need to customize it with an additional CSS.
For example:
http://webix.com/snippet/66d327a4
Second, you can handle it with the button as an active element:
Thank you for the clear examples! I did not know about the activeContent property. Just what I need.