Skip to content

2.8.1

Compare
Choose a tag to compare
@eakoriakin eakoriakin released this 16 Sep 18:26

Features

Bug fixes

  • Fixed broken two-way data binding of items when onSearch event is used together with hasVirtualScroll or hasInfiniteScroll (1ef2b9e)

Breaking changes

  • Removed infiniteScroll parameter from onInfiniteScroll and onSearch events. To update follow the steps below. Check out the demo as well.
  1. Replace event.infiniteScroll.enable(true); with event.component.enableInfiniteScroll();.
  2. Replace event.infiniteScroll.enable(false); with event.component.disableInfiniteScroll();.
  3. Replace event.infiniteScroll.complete(); with event.component.endInfiniteScroll();.