Hi Euclides,
Thanks for using Syncfusion Products.
We analyzed your sample and found that the grid is not rendered since the JQuery has been referred more than once. While using Syncfusion Classic Menu control, the jQuery script file will be loaded in the page load by default, and it has been referred after the ej.web.all.min.js script, so the grid is not rendered.
To avoid that, we suggest you to refer the script files in scriptmanager. The scriptmanager has the ability to combine multiple scripts into a single payload instead of individual scripts.
Please find the below code snippet:
<asp:ScriptManager ID="scriptManager" runat="server"> <Scripts > <asp:ScriptReference Path="~/Scripts/jsviews.min.js" /> <asp:ScriptReference Path="~/Scripts/jsrender.min.js" /> <asp:ScriptReference Path="~/Scripts/ej.web.all.min.js" /> <asp:ScriptReference Path="~/Scripts/ej.webform.min.js" /> </Scripts> </asp:ScriptManager> |
For your convenience we have modified your sample and same can be downloaded from the below link
Sample Link : http://www.syncfusion.com/downloads/support/forum/118997/AdmPres1841880195.zip
Please get back to us if you have any further assistance,
Regards,
Prasanna Kumar N.S.V