BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Filter
- Filter option is shown to filter the current column." However, in the demo there is no on/off to show the filter in the popup menu. We would really like to have that feature as the showing of the filter boxes is intrusive to show all the time. So having a trigger to trun them on and off in the popup menu would be awesome!
<EjsTreeGrid ID="TreeGrid" @ref="TreeGrid" DataSource="@TreeData" IdMapping="TaskID" ParentIdMapping="ParentID" TreeColumnIndex="1" ShowColumnMenu="true" AllowFiltering="true" AllowSorting="true" AllowPaging="true" AllowRowDragAndDrop="true" Toolbar="Toolbaritems">
<TreeGridEvents TValue="string" OnToolbarClick="ToolBarClick" RowSelected="RowSelect"></TreeGridEvents>
<TreeGridEvents TValue="SelfReferenceData"></TreeGridEvents>
<TreeGridPageSettings PageSize="2"></TreeGridPageSettings>
<TreeGridFilterSettings Type="Syncfusion.EJ2.Blazor.TreeGrid.FilterType.Menu"></TreeGridFilterSettings>
<TreeGridColumns>
<TreeGridColumn Field="TaskID" HeaderText="Task ID" IsPrimaryKey="true" Width="80" TextAlign=" Syncfusion.EJ2.Blazor.Grids.TextAlign.Right"></TreeGridColumn>
<TreeGridColumn Field="Duration" HeaderText="Duration" Width="100" TextAlign=" Syncfusion.EJ2.Blazor.Grids.TextAlign.Right" AllowFiltering="false"></TreeGridColumn>
</TreeGridColumns>
</EjsTreeGrid> |