I have a HandsOnTable with mergeCells
option, on particular event I make a server call which gives me updated data and hence merge cells options also need to be updated.
For e.g. before server call, grouping was for every 5 rows, but after it's for 4 rows.
I used hot.updateSettings(hotOptions)
in which mergeCells
of hotOptions is updated, but it does not update the setting.
Before server call:
var hotOptions =
{
data: Handsontable.helper.createSpreadsheetData(5,5),
colWidths: [47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47],
rowHeaders: true,
colHeaders: true,
contextMenu: true,
mergeCells: [
{row: 0, col: 0, rowspan: 2, colspan: 2},
{row: 3, col: 3, rowspan: 2, colspan: 2}
]
};
hot = new Handsontable(container, hotOptions);
After server call:
hotOptions.mergeCells = [
{row: 0, col: 0, rowspan: 3, colspan: 3},
{row: 0, col: 3, rowspan: 2, colspan: 1}
];
//just to prove that data is updating
hotOptions.colWidths = [100, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47];
hot.updateSettings(hotOptions);
I can destroy earlier HOT instance and create new one with new options (attached fiddle does this), but I want to achieve the same with updateSettings
.
More details: http://jsfiddle.net/ru53zo3o/1/
I think I have fixed this.
Just before calling
updateSettings
of the HOT instance, update itsmergeCells
attribute with the new instance ofHandsontable.MergeCells
object by passing updatedmergeCells
array as an attribute.See it working here: http://jsfiddle.net/gncb55jp/3/