Search in combobox with pagination extjs

后端 未结 2 1759
别跟我提以往
别跟我提以往 2021-01-29 08:26

Hello i\'m trying to do search in combobox.It\'s working but search only in current page i\'m using pagination with search too i need to search in all pages not current page onl

2条回答
  •  情深已故
    2021-01-29 08:54

    1. your store needs to be setup for pagination

    2. your server needs to handle pagination correctly based on the parameters received from the store's proxy. The proxy will send up querystring parameters like ?page=1&start=0&limit=25, and your server needs to return only 25 (for example) records and a total parameter.

      {"total":101,"data":[{model data}, {model data}, ...]}

    3. despite the documentation, the pageSize property in combobox is actually a boolean, turning pagination on if 1 or greater.

提交回复
热议问题