Having trouble getting help?
Contact Support
Contact Support
Select treegrid rows based on certain condition in Vue Treegrid component
11 Jun 20246 minutes to read
You can select the specific row in the Tree Grid based on a certain condition by using the selectRows
method in the dataBound
event of Tree Grid.
In the below demo, we have selected the Tree Grid rows only when Duration column value greater than 4.
<template>
<div id="app">
<ejs-treegrid :dataSource="data" :treeColumnIndex="1" height='300px' idMapping='TaskID' parentIdMapping='parentID' :rowDataBound="rowDataBound" :selectionSettings="selectionOptions"
:dataBound="dataBound" ref="treegrid">
<e-columns>
<e-column field="TaskID" headerText="Task ID" :isPrimaryKey='true' width="70" textAlign="Right"></e-column>
<e-column field="TaskName" headerText="Task Name" width="100" ></e-column>
<e-column field="StartDate" headerText="Start Date" format="yMd" width="100" textAlign="Right"></e-column>
<e-column field="EndDate" headerText="End Date" width="100" format="yMd" textAlign="Right"></e-column>
<e-column field="Duration" headerText="Duration" width="90" textAlign="Right"></e-column>
<e-column field="Priority" headerText="Priority" width="90" textAlign="eft"></e-column>
</e-columns>
</ejs-treegrid>
</div>
</template>
<script setup>
import { provide, ref } from "vue";
import { TreeGridComponent as EjsTreegrid, Page, ColumnDirective as EColumn,
ColumnsDirective as EColumns
} from "@syncfusion/ej2-vue-treegrid";
import { projectData } from "./datasource.js";
const treegrid = ref(null);
const data = projectData;
const selIndex = [];
const selectionOptions = { type: "Multiple" };
const rowDataBound = function(args) {
if (args.data["Duration"] > 3) {
selIndex.push(parseInt(args.row.getAttribute("aria-rowindex")));
}
};
const dataBound = function() {
if (selIndex.length) {
treegrid.value.selectRows(selIndex);
selIndex = [];
}
};
provide('treegrid', [Page]);
</script>
<template>
<div id="app">
<ejs-treegrid :dataSource="data" :treeColumnIndex="1" height='300px' idMapping='TaskID' parentIdMapping='parentID' :rowDataBound="rowDataBound" :selectionSettings="selectionOptions"
:dataBound="dataBound" ref="treegrid">
<e-columns>
<e-column field="TaskID" headerText="Task ID" :isPrimaryKey='true' width="70" textAlign="Right"></e-column>
<e-column field="TaskName" headerText="Task Name" width="100" ></e-column>
<e-column field="StartDate" headerText="Start Date" format="yMd" width="100" textAlign="Right"></e-column>
<e-column field="EndDate" headerText="End Date" width="100" format="yMd" textAlign="Right"></e-column>
<e-column field="Duration" headerText="Duration" width="90" textAlign="Right"></e-column>
<e-column field="Priority" headerText="Priority" width="90" textAlign="eft"></e-column>
</e-columns>
</ejs-treegrid>
</div>
</template>
<script>
import { TreeGridComponent, Page, ColumnDirective, ColumnsDirective } from "@syncfusion/ej2-vue-treegrid";
import { projectData } from "./datasource.js";
export default {
name: "App",
components: {
"ejs-treegrid":TreeGridComponent,
"e-columns":ColumnsDirective,
"e-column":ColumnDirective,
},
data() {
return {
selIndex: [],
selectionOptions: { type: "Multiple" },
data: projectData,
};
},
methods: {
rowDataBound(args) {
if (args.data["Duration"] > 3) {
this.selIndex.push(parseInt(args.row.getAttribute("aria-rowindex")));
}
},
dataBound() {
if (this.selIndex.length) {
this.$refs.treegrid.selectRows(this.selIndex);
this.selIndex = [];
}
}
},
provide: {
treegrid: [Page]
}
}
</script>