Skip to content

Infragistics Community Forum / Web / Ignite UI for ASP.NET Core / Unable to create grid using Html.Infragistics().Grid() and get error "Unexpected token '<'

Unable to create grid using Html.Infragistics().Grid() and get error "Unexpected token '<'

New Discussion
Pui Yee Poon
Pui Yee Poon asked on Jan 21, 2026 1:28 PM

Hi,

I recently create a new .NET 6 web app project and want to use igGrid in my project. I was used to the C# MVC way (Html.Infragistics().Loader() $ Html.Infragistics().Grid()) to create the grid (instead of jquery way like $.ig.Loader & $(‘#id’).igGrid({})) but it return error “SyntaxError: Unexpected token ‘<‘, ” <script Ty”… is not valid JSON“.

Project structure, all IgniteUI css and js files are under wwwroot folder:

Nuget package: Infragistics.Web.AspNetCore (6.22.2.7)

The css and scripts referenced:
<link href=”/css/themes/infragistics/infragistics.theme.css” rel=”stylesheet” />
<link href=”/css/structure/infragistics.css” rel=”stylesheet” />
<script src=”“>code.jquery.com/…/script>
<script src=”“>code.jquery.com/…/script>
<script src=”/js/infragistics.core.js”></script>
<script src=”/js/infragistics.lob.js”></script>
<script src=”/js/infragistics.loader.js”></script>

Then, I have my controller code that return dummy records array to the Workbench.cshtml partial view.
Workbench.cshtml:

@using Infragistics.Web.Mvc
@model TestProjecte.Models.DummyModel

@(Html.Infragistics().Loader()
            .ScriptPath(Url.Content("/js/"))
            .CssPath(Url.Content("/css/"))
            .Theme("bootstrap")
            .Render())

@(Html.Infragistics().Grid(Model.Records.AsQueryable())
                .ID("tblRecords")     
                .FixedHeaders(true)
                .DefaultColumnWidth("130px")
                .AutoGenerateColumns(false)
                .Columns(column =>
                {
                    column.For(x => x.Id).HeaderText("Id").ColumnCssClass("text-center").HeaderCssClass("text-center");                    
                    column.For(x => x.StartTime).HeaderText("Start Time").ColumnCssClass("text-center").HeaderCssClass("text-center").DataType("date").Format("yyyy-MM-dd HH:mm:ss.fff").Width("200px");
                    column.For(x => x.EndTime).HeaderText("End Time").ColumnCssClass("text-center").HeaderCssClass("text-center").DataType("date").Format("yyyy-MM-dd HH:mm:ss.fff").Width("200px");
                    column.For(x => x.Dur).HeaderText("Duration (s)").ColumnCssClass("text-center").HeaderCssClass("text-center");                    
					column.For(x => x.Location).HeaderText("Location").ColumnCssClass("text-center").HeaderCssClass("text-center");
                })                
                .Virtualization(false)
                .Render())

May I know what did I miss out, is it missing Nuget package reference, wrong jquery version, or the way I use Html.Infragistics().Loader() is wrong (I was coming from .NET Framework project which creates the grid this way)? Any pointer or help is great, thanks!

Sign In to post a reply

Replies

  • 0
    Pui Yee Poon
    Pui Yee Poon answered on Apr 10, 2023 6:19 AM

    My mistake, found out the issue was me declaring ajax call response data type 'json' which should really be 'html' since I'm returning a PartialView from controller.
    However, there's still issue with the grid, I can only see the table header and all rows are blank, there is an error coming from infragistics.ui.grid.filtering.js: "Cannot read properties of undefined (reading 'getEditor')" not sure if this is related?

    • 0
      N. Ishibashi
      N. Ishibashi answered on Apr 10, 2023 9:40 AM

      Hello,

      I'm investigating your issue. When I have any update about it, I'll let you know. So could you wait for a while?

      Thank you in advance.

    • 0
      N. Ishibashi
      N. Ishibashi answered on Apr 13, 2023 6:15 AM

      I have investigated your issue, and I have asked our engineering staff to examine this further.  To ensure that it will receive attention, I have logged this behavior in our internal tracking system with a Development ID of 275222. This will be assigned to a developer in a future sprint to review my investigation and confirm my findings or to offer a fix, or other resolution.

      Please let me know if you need more information.

      • 0
        N. Ishibashi
        N. Ishibashi answered on Apr 19, 2023 2:01 AM

        We investigated the issue and found out that it's solved by calling DataBind() before Render(), like this:

        @(Html.Infragistics().Grid(Model.Records.AsQueryable())
        .ID("tblRecords")
        @* … skipping some codes … *@
        .DataBind()
        .Render())

        Could you give it a try?

      • 0
        Pui Yee Poon
        Pui Yee Poon answered on Apr 19, 2023 2:35 AM

        Tested and it is the missing DataBind() causing the issue, now I can see the full table. Thank you!

  • You must be logged in to reply to this topic.
Discussion created by
Favorites
Replies
Created On
Last Post
Discussion created by
Pui Yee Poon
Favorites
0
Replies
5
Created On
Jan 21, 2026
Last Post
2 years, 11 months ago

Suggested Discussions

Created by

Created on

Jan 21, 2026 1:28 PM

Last activity on

Feb 25, 2026 9:51 AM