7 Answers, 1 is accepted
Unfortunately, it is not clear from the provided information what the cause for the issue might be. Therefore, could you please provide a small sample in which the issue can be observed locally.
Regards,Rosen
the Telerik team

It seems that you have missed to attached the project.
Greetings,Rosen
the Telerik team

I have looked at the project you have provided and found few issues with the way grid is loaded.
- In order to use grid in a partial view loaded through AJAX the grid widget should be also populated through AJAX (either with or without server operations enabled)
- I have noticed that the container in which the partial view is loaded have the same id as the grid widget place within the partial view. This, however, will produce invalid HTML, and should be avoided. Thus, you will need to change the Name of this Grid instance.
Rosen
the Telerik team

.DataSource(ds=>
ds.Ajax()
ds.Action(action=action.read("actionname", "controller"));
As I have mentioned in my previous message elements on the page should have different ids. And indeed the DataSource be set to use AJAX binding.
All the best,Rosen
the Telerik team