canvas-datagrid icon indicating copy to clipboard operation
canvas-datagrid copied to clipboard

allowSorting does not disable sorting on header clicks

Open TonyGermaneri opened this issue 4 years ago • 1 comments

It does remove the option from the context menu. This is simple to fix.

check the allowSorting bool just before this line

https://github.com/TonyGermaneri/canvas-datagrid/blob/aee9a2a12d43dda54d615e619b90031f37f32527/lib/publicMethods.js#L642

TonyGermaneri avatar Apr 12 '20 08:04 TonyGermaneri

As a workaround:

grid.addEventListener('beforesortcolumn', function(e) { e.preventDefault(); });

jswolf19 avatar Dec 06 '21 04:12 jswolf19