Hi,
I am using React Syncfusion Grid for my project. In my grid I have frozen the right most Column with the help of FrozenColumns.
While doing this I am able to horizontally scroll through my grid with the scroll bar present at the bottom, but I am not able to scroll horizontally using the touchpad of my laptop.
Sample Implementation
columns=[
{field:"aaaaaa",headertext:"aaaa",template:customColumnTemplate},{field:"bbbbbb",headertext:"aaaa",template:customColumnTemplate}
{field:"ccccccc",headertext:"aaaa",template:customColumnTemplate,freeze:"Right"}
]
return
<GridComponent
frozenColumns={1}
/>
<Inject services={[Freeze]}
<GridComponent>
Hi, Thank you for your response
1.Yes, I am able to scroll the content using my touch-pad in the demo you provided.
2.The Syncfusion-Grid version of My project is-19.1.66.
3.No, I have not used any custom CSS for my grid scroller.
4.Yes, I am using the latest version of Chrome on my system.
I am able to use the scroll horizontally with the scroll bar, but not with my touch pad, I even Tried freezing the left side of my table, Touch pad scroll is not functioning like this too. I even tried using column Directives without using custom columns, I got the same result with this approach too.
columns=[
{field:"aaaaaa",headertext:"aaaa",template:customColumnTemplate},{field:"bbbbbb",headertext:"aaaa",template:customColumnTemplate}
{field:"ccccccc",headertext:"aaaa",template:customColumnTemplate,freeze:"Right"}
]
return
<GridComponent
/>
<Inject services={[Freeze]}
<GridComponent>
Thank you
ym