Hi,
I'm changing the grids in an ASP.NET MVC application from WebGrid to Telerik's MVC Grid.
My grids reside in partial views that receive an IEnumerable<> with the data to display. Those partial views are rendered by many other views. Their respective action methods fetch the actual data for the partial view.
I want sorting, filtering and grouping via AJAX. But because I can't know in my partial view where the data is coming from, I can't use the grid's AJAX binding.
For Web grid I used jQuery's .live() and .load() to insert the sorted grid in place of the older one. But when I do the same with Telerk's grid the filter button no longer works (it isn't clickable). I'm assuming the filter button loses its events, but how do I set them?