Hello, as mentioned in the title, I try to use WebApiAdaptor with the Blazor Grid component. It works successfully when I use paging.
However if I set EnableVirtualization="true" then all rows in the grid remain empty. When editing any 'empty' row using EditMode.Dialog, the data is presented in the dialog, so reading from DB still works. But nothing is visible in rows of the grid.
I use Syncfusion.EJ2.Blazor ver 17.4.0.55.
Is it possible to use properly WebApiAdaptor with virtual scrolling in a Grid?
Below there are parts of the grid definition.
Best regards
<EjsGrid @ref="DefaultGrid" TValue="IdnumbersPlusCustomer"
AllowSorting="true" AllowMultiSorting="true"
AllowResizing="true" AllowFiltering="true"
AllowExcelExport="true"
ShowColumnChooser="true" Toolbar="@( new List<string>() {"Add", "Edit" ,"Delete","Update","Cancel", "ColumnChooser" })"
GridLines="GridLine.Both"
EnableVirtualization="false"
AllowPaging="true"
Height="410" Width="auto"
Query="@myQuery">
<EjsDataManager Url="/api/ApiIdnumbers" Adaptor="Adaptors.WebApiAdaptor"></EjsDataManager>
....
@code{
Query myQuery = new Query().AddParams(MyUtils.query_SQLDbLogin1_ServerName, SQLDbLogin1.ServerName);