Hi.
It can place a button in a single cell and not for the entire column?
(eg in the row THE GODFATHER cost column)
http://webix.com/snippet/3faae755
Many thanks!
Hi.
It can place a button in a single cell and not for the entire column?
(eg in the row THE GODFATHER cost column)
http://webix.com/snippet/3faae755
Many thanks!
Yep, template can defined as javascript function with any necessary logic inside
{ id:"votes", header:{ text:"Cost"}, template:function(obj){
if (obj.id ==2)
return iconPlus+" "+obj.votes;
else
return obj.votes;
}}
Very very very thanks!