Problem with change value in a datagrid cell

Hello,
is possible change a value of a datagrid cell without reload the data of the row?

I have some columns with the value in template, I can change the template value of a determinate column after a click on button?

Thanks,
Best

Hi, yep you can change templates dynamically

grid.getColumnConfig("title").template = webix.template("Not a #title#");
grid.refresh();

is possible change a value of a datagrid cell without reload the data of the row?

Not quite sure what do you mean by reload. The common approach is the next

grid.getItem(id).title = "New title";
grid.refresh(id);

Thank you!