Hello,
I’m new to handsontable, currently i use Version: 14.4.0
I have a problem when using merge cell…when I get data with
console.log(hot.getData());
console.log(hot.getSourceData());
It keeps giving me a null value on the merged cells is it proper behavior?
how do you get the merged data instead of the null value?
Let’say the setup is
mergeCells:[{ row: 0, col: 0, rowspan: 1, colspan: 3 }]
The result is :
[“Data Merge”,null,null,“Data”,“Data”];
How to make it :
[“Data Merge”,“Data Merge”,“Data Merge”,“Data”,“Data”];
am I missing some setting?