Is it possible to configure contextMenus per cell with cascading configurations? I need each cell to be able to define its own context menu items, but it doesn’t seem to be working. Here’s a simple fiddle.
hot = new Handsontable(container, {
data: getCarData(),
// contextMenu: true, // THIS WORKS
cells: function(row, col, prop) {
return {
contextMenu: true // DOES NOT WORK
};
}
});