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!

0
Votes

Provide nested components to define filtered columns, sorted columns and command buttons.


Currently filtered columns and command buttons are provided as List<PredicateModel>, List<SortDescriptor> and List<CommandModel>.

Possible code change after implementation.


Filtered columns

<GridFilterSettings>
   <GridPredicateModels>


      <GridPredicateModel Field="EmployeeID" Operator="FilterOperator.Equal" Value="5">                  

     </GridPredicateModel>

</GridPredicateModels>
</GridFilterSettings>

Sorted columns

<GridSortSettings>

   <GridSortColumns>


      <

GridSortColumn Field="EmployeeID" Direction="SortDirection.Ascending">

      </GridSortColumn>

</
GridSortColumns>

</GridSortSettings>


Command columns

<GridColumn HeaderText="Manage Records">

   <GridCommandColumns>


      <

GridCommandColumn Type="CommandButtonType.Edit">

      </GridCommandColumn>

</
GridCommandColumns>

</GridColumn>