We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Invisible Grid in a WebForm

Hello, I will be brief.
If you put the grid on the home page (default.aspx) it works.
When put it into a Webform called from a menu, the grid disappears.
In fact, I used a sample project provided by you. Just adapted my needs, not removed any files, put a menu and includes my page.
Can anyone help me please?
(Translated by google)



Attachment: AdmPres_993b9ce0.rar

1 Reply

PK Prasanna Kumar Viswanathan Syncfusion Team May 5, 2015 11:06 AM UTC

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


Loader.
Live Chat Icon For mobile
Up arrow icon