Grid no longer working since adding Blazor Components to project

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>



1 Reply

RS Rajapandiyan Settu Syncfusion Team October 2, 2020 03:17 AM UTC

Hi James, 
 
Greetings from Syncfusion support. 

Before your start your requirement , please share the following details for the further validation. 

  1. Explain your exact requirement with more details.
  2. What are the Syncfusion Blazor components rendered in your application?
  3. Do you have rendered both Syncfusion Blazor Grid and ASP.Net core Grid in your application?
  4. Share the video demo of the reported issue.
  5. If possible, share the issue reproduced sample with us.

Regards, 
Rajapandiyan S

Loader.
Up arrow icon