[BUG] Mousewheel scrolling (vertically) on pinned columns does not work
kevinkl opened this issue · 2 comments
When you put your cursor over a pinned column and then use the mousewheel to scroll up or down it does not work.
If you put your cursor over an unpinned column and use the mousewheel, scrolling works.
We are using the "angular-ui-grid": "4.4.11" and the following columnDefs:
[
{
field: 'type',
displayName: 'Type',
type: 'string',
visible: true,
pinnedLeft: true,
minWidth: 200,
grouping: { groupPriority: 0 },
sort: { priority: 0, direction: 'asc' },
groupingShowAggregationMenu: false,
superCol: 'group1'
},
{
field: 'location',
displayName: 'Location',
type: 'string',
grouping: { groupPriority: 1 },
sort: { priority: 1, direction: 'asc' },
visible: true,
pinnedLeft: true,
minWidth: 200,
groupingShowAggregationMenu: false,
superCol: 'group1'
},
{
field: 'subLocation',
displayName: 'Sub-Location',
type: 'string',
enableGrouping: false,
visible: false,
enablePinning: true,
pinnedLeft: true,
minWidth: 200,
superCol: 'group1'
}, {
field: 'total',
displayName: 'Total',
type: 'number',
enableFiltering: false,
enableGrouping: false,
visible: false,
minWidth: 200,
superCol: 'groupTotal'
},
...
]
Expected behavior
Scrolling with the mousewheel should work everywhere on the table
Desktop (please complete the following information):
- OS: macOS Ventura 13.6.2
- Browser Chrome 120.0.6099.71 and Firefox 120.0.1
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This issue has been automatically closed because it has not had recent activity. If you believe that this is still an issue in the latest version, feel free to re-open it. Thank you for your contributions.