Hi Support,
Can you please let me know if there is a way to disable the drag fonctionnality for one single column of my handsontable?
Thanks in advance,
Regards,
Thomas
Hi Support,
Can you please let me know if there is a way to disable the drag fonctionnality for one single column of my handsontable?
Thanks in advance,
Regards,
Thomas
Hi Again,
Actually this is quite easy using the afterSelection event:
afterSelection: function(row, col, row2, col2) {
var meta = this.getCellMeta(row2, col2);
if (!meta.editor) {
this.updateSettings({
fillHandle: false
});
} else {
this.updateSettings({
fillHandle: true
});
}
}
kr
Thomas
You can also do it via beforeChange
by listening to the change type Autofill