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

After applying a filter in which there are no records to display, the custom component disappears in the filter template (FilterTemplate).

Code:

<
EjsGrid @ref="@Grid" DataSource="@Orders" AllowFiltering="true" AllowPaging="true" Height="315">
  <
GridColumns>
  <
GridColumn Field=@nameof(Order.OrderID) HeaderText="Order ID" TextAlign="TextAlign.Right" Width="120">
    <
FilterTemplate>
     <
EjsDropDownList PlaceHolder="Customer Name" ID="CustomerID" Value="@((context as PredicateModel).Value)" DataSource="@Dropdown">
     <
DropDownListEvents ValueChange="@Change" TValue="string">
     <
DropDownListFieldSettings Value="CustomerID" Text="CustomerID">
    <
/EjsDropDownList>
   <
/FilterTemplate>
  <
/GridColumn>
  <
GridColumn Field=@nameof(Order.OrderDate) HeaderText=" Order Date" Format="yMd" Type="ColumnType.Date" TextAlign="TextAlign.Right" Width="130">
  <
GridColumn Field=@nameof(Order.Freight) HeaderText="Freight" Format="C2" TextAlign="TextAlign.Right" Width="120">
 <
/GridColumns>
<
/EjsGrid>