We have a huge grid with no paging.
We wanted to group by a column where we need to scroll horizontally to the right to find and drag that header to the group by box.
This action will freeze the grid. Please help.
Below is our grid properties with over 50 columns
<ej-grid #gridid id="gridid" [dataSource]='ExceptionRows' [allowSorting]='true' [allowFiltering]='true'
[allowGrouping]='groupByVisible' [allowReordering]='true' (toolbarClick)='clickHandler($event)' [allowResizing]='true'
[toolbar]='toolbarOptions' [showColumnChooser]='true' [pageSettings]='options' [enableVirtualization]=true [enableColumnVirtualization]=true
gridLines='vertical' [filterSettings]='filterSettings' [height]='gridHeight'>
<e-columns>
...50+ columns
</e-columns>
</ej-grid>