Hi Linsee,
Thanks for contacting Syncfusion support.
As per the given detail we suspect that the partial view Grid is not rendered in your sample. This may because of not defining the Html.EJ().ScriptManager() in the partial view page. By default, Html.EJ().ScriptManager() placed in the layout which will referred for all view pages except the partial view pages. Because Html.EJ().ScriptManager() which is in layout page is not initiate for control rendering in partial views hence every partial views should have their own ScriptManager. So, we suggest you to add below line in your partial view pages.
@(Html.EJ().Grid<SampleApp.Models.OrdersView>("SelectedGrid")
----
.Columns(col =>
{
-----
})
)
@Html.EJ().ScriptManager()
|
We have already discuss about the partial view page rendering in the following documentation links.
If we misunderstood your query then please get back to us.
Regards,
Thavasianand S.