Button in cell

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;
}}

http://webix.com/snippet/5866a26e

Very very very thanks!