Show All Pages...

How can I add a "Show All" link after the PageIndexes to display all of the records?

1 Reply

MW Melba Winshia Syncfusion Team August 8, 2007 01:00 PM UTC

Hi Ron,

Thank you for your interest in Syncfusion Products.

If your intention is to add "Show All" link after the PageIndexes to display all of the records , it can be achieved by using below code snippet.

[C#]

protected void LinkButton1_Click(object sender, EventArgs e)
{
this.GridGroupingControl1.PageSize = 0;
this.LinkButton1.Text = "";
}


Please refer the sample in the below link which illustrates the above.


http://websamples.syncfusion.com/samples/Grid.Web/5.1.0.51/67038/main.htm


If I have misunderstood your requirement, could you please explain me in detail, so that I can work in depth and try to send a better solution?

Thanks,
Melba

Loader.
Up arrow icon