Hello support,
Would you please suggest best way to save cell properties in the database?
In my code hot.setcellmeata is working fine however I would like to replace text to text in the database as well.
What would be the best way?
‘Bold’:{
name: ‘Bold’,
callback:function(key, options){
console.log(“key”,key,“option”,options,options[0].start.row);
hot.setCellMeta(options.start.row, options.start.col, ‘className’, ‘bold’);
hot.render();
},
Afterchanges doesn’t detect setCellMeta changes.