Visible Scroll Bar in GridContol | Mouse Wheel Behaviour | Shift + Mouse Wheel Behaviour |
Horizontal Scroll Bar only | Horizontal scroll | Horizontal scroll |
Vertical Scroll Bar only | Vertical scroll | Vertical scroll |
Horizontal Scroll Bar + Vertical Scroll Bar | Vertical scroll | Horizontal scroll |
Visible Scroll Bar in GridContol | Mouse Wheel Behaviour | Shift + Mouse Wheel Behaviour |
Horizontal Scroll Bar only | Nothing happened | Nothing happened |
Vertical Scroll Bar only | Vertical scroll | Vertical scroll |
Horizontal Scroll Bar + Vertical Scroll Bar | Vertical scroll | Nothing happened |
Query |
Solution |
Can I know how to bring back the horizontal scroll behaviour when there is only horizontal scroll bar? |
We can reproduce your scenario at our end. So, we will fix this issue and include this fix in our upcoming release 2017 Vol2. |
In addition, can I know if there is any support of tilt wheel to scroll horizontally? |
In order to scroll the scrollbar horizontally and vertically, you can use the VerticalScroll event. Please refer to the below code example and the sample,
Code example
this.gridControl1.VerticalScroll+=gridControl1_VerticalScroll;
private void gridControl1_VerticalScroll(object sender, ScrollEventArgs e)
{
this.gridControl1.HScrollBar.Value = e.NewValue;
}
Sample link: GridControl
Note:
Also, the GridControl having the Intelli-Mouse panning support. Please refer the below UG,
|
Hi Angus,
Thanks for using Syncfusion products.
Please find your response in below table
Query Solution Can I know how to bring back the horizontal scroll behaviour when there is only horizontal scroll bar? We can reproduce your scenario at our end. So, we will fix this issue and include this fix in our upcoming release 2017 Vol2. In addition, can I know if there is any support of tilt wheel to scroll horizontally? In order to scroll the scrollbar horizontally and vertically, you can use the VerticalScroll event. Please refer to the below code example and the sample,Code examplethis.gridControl1.VerticalScroll+=gridControl1_VerticalScroll;private void gridControl1_VerticalScroll(object sender, ScrollEventArgs e){this.gridControl1.HScrollBar.Value = e.NewValue;}Sample link: GridControlNote:Also, the GridControl having the Intelli-Mouse panning support. Please refer the below UG,
Regards,Mohanraj G
Hi There,
The ability to upgrade the version of Syncfusion is not there for us. Is there a way that I can get a patch in the current version for this?
We have moved from V 7 to V13.3 the same and are experiencing the same issue and are looking for a fix.
Hatim