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

Regarding Vertical Scrolling in grid Grouping Control

Kindly Tell me how do i know while vertically scrolling in Grid grouping Control that i reached to the end of grid. Please reply me as soon as possible
Regards

1 Reply

RC Rajadurai C Syncfusion Team November 24, 2009 12:28 PM UTC

Hi Rohit,

Thanks for your interest in Syncfusion Products.

If you would like to be alerted while vertical scrolling reaches the last row in grid, then ValueChanged event of TableControl.VScrollBar have to be handled. Here is the code for your reference.

this.gridGroupingControl1.TableControl.VScrollBar.ValueChanged += new EventHandler(VScrollBar_ValueChanged);

void VScrollBar_ValueChanged(object sender, EventArgs e)
{
if (this.gridGroupingControl1.TableControl.ViewLayout.LastVisibleRow == this.gridGroupingControl1.TableModel.RowCount)
Console.WriteLine("Last row has been reached");
}

We hope we have been able help with your technical support inquiries in this Forum. In addition to our Community Forums, we have other customized support avenues like our Direct Trac Developer Support System https://www.syncfusion.com/account/login?ReturnUrl=%2fsupport%2fdirecttrac%2fincidents and we hope you will take advantage of this system as well.

Thank you for your participation in Syncfusion’s Community Forums”.

Regards,
Rajadurai

Loader.
Live Chat Icon For mobile
Up arrow icon