This question is locked. New answers and comments are not allowed.
I have 2 grids on 1 page that are both being bound via ajax. The issue im having is that only the first grid on the page actually makes a call to get its data.
I have moved the order of grids to verify that they both work so my question is, should I be able to have multiple grids on a page and use ajax to populate them?
If needed here are the 2 grids:
Any Ideas?
I have moved the order of grids to verify that they both work so my question is, should I be able to have multiple grids on a page and use ajax to populate them?
If needed here are the 2 grids:
<%= Html.Telerik().Grid<BatchViewModel>() .Name("Grid") .DataBinding(dataBinding => dataBinding.Ajax() .Select("SelectFiltered", "Home") ) .Columns(columns => { ....... }) .Footer(false)%><%= Html.Telerik().Grid<BatchViewModel>() .Name("Grid") .DataBinding(dataBinding => dataBinding.Ajax() .Select("SelectAll", "Home") ) .Columns(columns => { ....... }) .Footer(false)%>Any Ideas?