Hi,
I have an ASP Core 3.1 MVC project that is using the Syncfusion ASP Core library. We recently started integrating Blazor components into our library including some Syncfusion controls. The ASP Core grid now seems to be trying to use Blazor when filters are applied to it and it is refreshed. I have not changed the grid logic at all.
Is there a way to explicitly specify that the grid control is an ASP Core control and not Blazor? The grid definition looks like this.
<ejs-grid id="Grid" width="auto" gridLines="None" enableHover="false" allowFiltering="true" allowSelection="true" created="applySearchFilterToGrid">
<e-data-manager url="/odata/RequestSummary" adaptor="ODataV4Adaptor" crossdomain="true" updateUrl="/odata/RequestSummary/Update"></e-data-manager>
<e-grid-editSettings allowEditing="true" mode="Normal"></e-grid-editSettings>
<e-grid-columns>
<e-grid-column field="Id" isPrimaryKey="true" visible="false"></e-grid-column>
<e-grid-column field="BusinessName" type="string" allowEditing="false" textAlign="Center" template="#cardTemplate"></e-grid-column>
<e-grid-column field="Type" visible="false" allowEditing="false"></e-grid-column>
<e-grid-column field="WithinCity" visible="false" allowEditing="false"></e-grid-column>
<e-grid-column field="OwnerId" visible="false" allowEditing="true"></e-grid-column>
<e-grid-column field="Status" visible="false" allowEditing="true" ></e-grid-column>
</e-grid-columns>
</ejs-grid>