Hello,
I am using webix datatable in a meteor application.
In the datagrid 2 columns are template columns:
this.ui = webix.ui({ ... columns: [{ id: 1, header: "Image", template: function(obj, common, value) { return "<img src='" + value + "' />"; }}, { id: 2, header: "Meteor Template", template: function(obj, common, value) { return Blaze.ToHTMLWithData(Template.myTemplate, {data: value, min: 0, max: 3}); }}], ... });
The problem that because template must return HTML, the data is not reactive anymore and if my image path changes or the data passed to the Meteor template changes, I will not get the change reactively.
Any idea to make it reactive?
Thanks