help on datafeed

Hello,
check this snippet https://snippet.webix.com/lwrbogjr

  • I type into the input combo box (datafeed fires)
  • datafeed only load the first 50 items and leaves blank lines
  • When the snippet runs for the first time I can navigate all the 999 items

Thanks

Hello @codejoin ,
The reason for this behavior, according to the API, dataFeed shouldn’t return anything (unlike proxy). In internal logic, such a return overrides the expected result.
Generally, it will work correctly with clearAll() + parse() (or load()) - that is, with an explicit call to methods for loading data.
Please take a look at the snippet:
https://snippet.webix.com/nffeoods

Ok.

Thank you so much