I noticed that when using GridSettingsPersister.LoadSettings, it does not load the PageSize into the RadGrid when I am using a custom pager. I was able to fix this for myself by change the below method of GridSettingsPersister. Is this a correct fix?
Thanks!
protected virtual void LoadPagingSettings() { if (Grid.MasterTableView.AllowPaging && Settings.PageSize > 0) { //Grid.MasterTableView.PageSize = Settings.PageSize; Grid.PageSize = Settings.PageSize; } }
Thanks!