Is ej:Grid -> PageSettings -> PageSizeList property available?

Hi, 

I'm using SyncFusion version  15.1460.0.33 for Classic ASP.NET and I'm trying to understand if the property PageSizeList  is available in the version I'm using of for following releases.
I would like to implement a similar solution  https://help.syncfusion.com/js/grid/paging#pager-with-pagesize-drop-down on an existing ASP.NET WebForm Grid
Cause currently I need an external dropdown control to change the PageSize property.

From the guide is not available: https://help.syncfusion.com/aspnet/grid/paging

Can you help me, please?

Thank you
BR,
Flavio

3 Replies

SE Sathyanarayanamoorthy Eswararao Syncfusion Team June 25, 2018 03:55 PM UTC

Hi Flavio, 

Thanks for contacting Syncfusion support. 

Query: Cause currently I need an external dropdown control to change the PageSize property. 
 
We can achieve this requirement in Asp.Net by setting the values for the pageSizeLsit in the serverside in the form of list. Refer the below code snippet. 

   protected void Page_Load(object sender, EventArgs e) 
        { 
            BindDataSource(); 
        } 
 
        private void BindDataSource() 
        { 
            List<int> PageList = new List<int>(); 
            PageList.Add(1); 
            PageList.Add(5); 
            PageList.Add(10); 
            this.FlatGrid.PageSettings.PageSizeList = PageList; 


If you need any further assistance please get back to us. 

Regards, 
Sathyanarayanamoorthy 




FR Flavio Ranica June 26, 2018 10:54 AM UTC

Hi,

ej:Grid component doesn't have PageSettings.PageSizeList  property or is not accessibile:




(Translation: 'PageSizeList' is not a member of 'PageSettings')


SE Sathyanarayanamoorthy Eswararao Syncfusion Team June 27, 2018 12:35 PM UTC

Hi Flavio, 

Sorry for the inconvenience caused. 

We have provided support for PageSizeList  from Essential Studio version 15.3.0.26. So we suggest you to upgrade to the version 15.3.0.26 or latest version. 

Regards, 
Sathyanarayanamoorthy 


Loader.
Up arrow icon