Add parameter for filtering in EJ2 TypeScript Treegrid control
27 Apr 20234 minutes to read
You can customize the default settings of the components which are used in Menu filter by using params of filter property in column definition.
In the below sample, TaskID and Duration Columns are numeric columns, while opening the filter dialog you can see that NumericTextBox with spin button is displayed to change/set the filter value. Now using the params option we hide the spin button in NumericTextBox for TaskID Column.
import { TreeGrid, Filter } from "@syncfusion/ej2-treegrid";
import { projectData } from './datasource.ts';
TreeGrid.Inject(Filter);
let treegrid: TreeGrid = new TreeGrid({
dataSource: projectData,
idMapping: "TaskID",
parentIdMapping: "parentID",
treeColumnIndex: 1,
height: 273,
allowFiltering: true,
filterSettings: { type: "Menu" },
columns: [
{ field: "TaskID", headerText: "Task ID", textAlign: "Right", width: 70, filter: { params: { showSpinButton: false } } },
{ field: "TaskName", headerText: "Task Name", width: 100 },
{ field: "StartDate", headerText: "Start Date", textAlign: "Right", width: 90, format: { skeleton: "yMd", type: "date" } },
{ field: "EndDate", headerText: "End Date", textAlign: "Right", width: 90, format: { skeleton: "yMd", type: "date" } },
{ field: "Duration", headerText: "Duration", textAlign: "Right", width: 90 },
{ field: "Priority", headerText: "Priority", width: 90 }
]
});
treegrid.appendTo("#TreeGrid");
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Tree Grid</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript Tree Grid Control" />
<meta name="author" content="Syncfusion" />
<link href="index.css" rel="stylesheet" />
<!-- Syncfusion Essential JS 2 Styles -->
<link rel="stylesheet" href="https://cdn.syncfusion.com/ej2/material.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
<script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id='loader'>Loading....</div>
<div id='container' class="e-adaptive-demo e-bigger">
<div class="e-mobile-layout">
<div class="e-mobile-content">
<div id="adaptivebrowser"></div>
</div>
</div>
</br>
<div class="datalink">Source:
<a href="https://en.wikipedia.org/wiki/List_of_Android_smartphones"
target="_blank">Wikipedia: List of Android smartphones</a>
</div>
</div>
</body>
</html>
You can refer to our
JavaScript Tree Grid
feature tour page for its groundbreaking feature representations. You can also explore our JavaScript Tree Grid exampleJavaScript Tree Grid example
to knows how to present and manipulate data.