Block entire Handsontable

It’a possible block entire Handsontable? Like No editing, No navigation in cells?

I need this when I do a server request and my form is in loading.

Best Regards, dit!

Hm… we do not have this kind of option. Did you consider an extra layer? Here’s an example: http://jsfiddle.net/handsoncode/p5mg886d/

I guess that it would be the fastest way to block everything.

Also perhaps have a look at my post at: http://stackoverflow.com/a/40801002/489865
and the discussion there. Basically, for my purposes the following works:

var settings = {};
settings.readOnly = true;  // make table cells read-only
settings.contextMenu = false;  // disable context menu to change things
settings.disableVisualSelection = true;  // prevent user from visually selecting
settings.manualColumnResize = settings.manualRowResize = false;  // prevent dragging to resize columns/rows
settings.comments = false;  // prevent editing of comments
hot.updateSettings(settings);
1 Like