Combobox with pagination giving error while doing reload.

0

I have a combobox with pageSize pagination: 20. And I have a checkbox that serves to filter some records of the combobox. The error occurs when before marking the checkbox I navigate between the pages of the combobox, and when doing the reload it sends to my controller.cs the parameter start: 20, but when I make the filter it does not have 20 records hence it is without information . I would like to know how and where I can set this start: 0 property when doing the reload of the store that populates the combobox.

    
asked by anonymous 16.10.2018 / 19:19

1 answer

0

Problem solved, when loading the store responsible for filling the combobox I just changed the function of store.load (); to store.loadPage (1);

    
17.10.2018 / 13:39