angular-ui / ui-grid

UI Grid: an Angular Data Grid
http://ui-grid.info
MIT License
5.39k stars 2.47k forks source link

[BUG] Mousewheel scrolling (vertically) on pinned columns does not work #7304

Closed kevinkl closed 6 months ago

kevinkl commented 9 months ago

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):

github-actions[bot] commented 7 months ago

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.

github-actions[bot] commented 6 months ago

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.