The table is inited without the rowHeader and when I call the method “updateSettings” to set the rowHeader visible, the result is that the rowHeader’s width is still equal with the first column width before. eg:
var table = new Handsontable({
rowHeaders: false
});
$("#btn").click(function() {
table.updateSettings({rowHeaders: true});
});
Thanks.