We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

DataGrid autoscroll on click

Hello,

i have problem with autoscrolling of datagrid when i click on random cell. For better idea, follow images bellow.

This is state 1, when i scroll page to table 2. Then i double click on the third row and second column, for example. And then datagrid automatically scroll, and my choise is gone. I think, that datagrid responds on focus, at first, and ignore mouse targeting. After scroll is everything ok, problem is with first choise, if datagrid isn't on top.



This is state 2, after clicking.



My question is: Is any option or anyting, for turn off autoscrolling of datagrid for this problem? Thank you very much


Attachment: Test_d0a9a6d5.zip

1 Reply

JG Jai Ganesh S Syncfusion Team September 9, 2016 02:15 PM UTC

Hi Martin, 
 
You can achieve your requirement by wiring the RequestBringIntoView event for grid like below, 
 
this.grid.RequestBringIntoView += grid_RequestBringIntoView; 
this.grid1.RequestBringIntoView += grid1_RequestBringIntoView; 
 
void grid1_RequestBringIntoView(object sender, RequestBringIntoViewEventArgs e) 
{ 
    e.Handled = true; 
} 
 
void grid_RequestBringIntoView(object sender, RequestBringIntoViewEventArgs e) 
{ 
    e.Handled = true; 
} 
 
 
 
Regards, 
Jai Ganesh S 


Loader.
Live Chat Icon For mobile
Up arrow icon