I'm looking for a way to clear the Kendo UI Grid for Angular 2 if the user navigates another page or simply logout. I have tried clearing the observable to null
and it is not good and i couldn't fill data after all. Can anyone suggest me a better way?
How to clear data on kendo ui angular 2 grid
3.2k Views Asked by Gayan Prasanna At
2
There are 2 best solutions below
3

You can set the view to empty array using either =Observable.empty()
or =Observable.from([])
but you will need to rebind the service back again if you want to fetch data. This is why the easiest way will be to just call .next([])
and then when needed fetch the data. See this example
I've adapted @knikolov's answer to suit my purposes. Since I use an object to store grid settings,
.next([])
was giving me type warnings, so replacing it with.next(null)
works.Also, it helps to set the grid's
skip
property to0
to reset the paging as well, in case the user was no longer on the first page of results.given the grid:
and declaring the settings object variable: