Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

For setting as below, if you sort records, few rows are going under the header. Also filtering might cause that if there is only one response that will be hidden under haders. @code section is the same as in 



<div style="height: 1000px; width: 100%">
<SfGrid DataSource="@GridData" Height="100%" Width="100%" OverscanCount="5" RowHeight="38"
AllowFiltering="true"
AllowSorting="true"
AllowMultiSorting="true"
AllowResizing="true"
AllowReordering="true"
AllowTextWrap="true"
AllowSelection="true"
AllowPaging="false"
EnableAltRow="true"
EnableVirtualMaskRow="true" EnableVirtualization="true" EnableColumnVirtualization="false"
EnableAdaptiveUI="false"
EnablePersistence="true"
AllowExcelExport="true">
<GridFilterSettings Type="FilterType.FilterBar" Mode="FilterBarMode.Immediate" ImmediateModeDelay="500"/>
<GridColumns>
<GridColumn Field=@nameof(Order.OrderID) HeaderText="Order ID" IsPrimaryKey="true" Width="150"></GridColumn>
<GridColumn Field=@nameof(Order.CustomerID) HeaderText="Customer Name" Width="150"></GridColumn>
<GridColumn Field=@nameof(Order.EmployeeID) HeaderText="Employee ID" Width="150"></GridColumn>
<GridColumn Field=@nameof(Order.OrderDate) HeaderText=" Order Date" Format="d" Type="ColumnType.Date" TextAlign="TextAlign.Right" Width="130"></GridColumn>
<GridColumn Field=@nameof(Order.Freight) HeaderText="Freight" Format="C2" TextAlign="TextAlign.Right" Width="120"></GridColumn>
<GridColumn Field=@nameof(Order.ShipCountry) HeaderText="Ship Country" Width="150"></GridColumn>
<GridColumn Field=@nameof(Order.ShipCity) HeaderText="Ship City" Width="150"></GridColumn>
<GridColumn Field=@nameof(Order.ShipAddress) HeaderText="Ship Address" Width="150"></GridColumn>
<GridColumn Field=@nameof(Order.ShippedDate) HeaderText="Shipped Date" Width="150"></GridColumn>
<GridColumn Field=@nameof(Order.Verified) HeaderText="Verified" Type="ColumnType.Boolean" Width="150"></GridColumn>
</GridColumns>
</SfGrid>

</div>