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