Visual Studio 2015

Hello,

I'm trying to create a VS 2015 webforms application. I am having issues with registering the assemblies. and using the controls. I have referenced the appropriate dlls and the control is not recognized. I've tried registering the namespace/tagprefix in the web config and the .aspx page. I've tried different things.

I am using Essential studio 13.3.0.7
version: 13.3451.0.7
.net: 4.5.1

Please see attached.

Thank you.

Attachment: WebApplication1_423a30f.7z

3 Replies

VA Venkatesh Ayothi Raman Syncfusion Team March 21, 2016 12:17 PM UTC

Hi Cliff,

Thanks for contacting Syncfusion support.

We have analyzed your sample and found the below,


1.       You are declared the grid with mismatched quotes like ,


<ej:grid id="flatgrid' runat='server'></ej:grid> that is the reason error shown in a server side.


Screenshot:




Solution:

Error is not in server side if we declare the grid like,


<ej:grid id="flatgrid" runat='server'></ej:grid>


Screenshot:



2.       You are not referred a jsRender script file in site master page. It is a one of the dependency file. Otherwise grid content is doesn’t shown and throws a script error in console window. Please refer to the screen shot,


Screenshot:



Solution:

We suggest you to refer a jsRedner script file in the site master page.


Screenshot:





We have modified your sample. Please refer to the code example, help document and sample,
Code Example:

<asp:ScriptManager runat="server">

            <Scripts>

                <%--To learn more about bundling scripts in ScriptManager see https://docs.microsoft.com/en-us/dotnet/api/system.web.ui.scriptmanager?view=netframework-4.8 --%>

                <%--Framework Scripts--%>

                <………………..>

                <%--Site Scripts--%>

                 <asp:ScriptReference Path="~/Scripts/jquery-2.1.4.min.js" />

     

                <asp:ScriptReference Path="~/Scripts/jquery.easing.1.3.min.js" />

                <asp:ScriptReference Path="~/Scripts/jquery.globalize.min.js" />

                <asp:ScriptReference Path="~/Scripts/jsrender.min.js"/>               

                <asp:ScriptReference Path="~/Scripts/ej/ej.web.all.min.js" />

                <asp:ScriptReference Path="~/Scripts/ej/ej.webform.min.js" />

            </Scripts>

        </asp:ScriptManager>


Sample: https://www.syncfusion.com/downloads/support/directtrac/general/ze/WebApplication1-1364469340

Help Document: https://help.syncfusion.com/aspnet/getting-started/manual-integration-of-syncfusion-aspnet-controls

Regards,
Venkatesh Ayothiraman.


BL bloatus April 4, 2016 01:37 PM UTC

Thank you for your support Venkatesh. All is working!


VA Venkatesh Ayothi Raman Syncfusion Team April 5, 2016 08:47 AM UTC

Hi Cliff,

Thanks for your feedback.

We have happy to hear that your requirement is achieved.

Thanks,
Venkatesh Ayothiraman.

Loader.
Up arrow icon