Skip to content

Commit 74b4680

Browse files
Integrated latest changes at 12-12-2025 1:30:08 PM
1 parent c1afac9 commit 74b4680

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ej2-javascript/code-snippet/treegrid/selection-cs10/datasource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function randomDate(start: Date, end: Date): string {
5858
return d.toISOString().split('T')[0];
5959
}
6060

61-
let taskData: Task[] = [];
61+
export let taskData: Task[] = [];
6262
let id = 1;
6363

6464
for (let i = 0; i < NUM_ROOTS; i++) {

ej2-javascript/code-snippet/treegrid/selection-cs10/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { TreeGrid, Selection } from '@syncfusion/ej2-treegrid';
2-
import { taskData } from './datasource.ts';
1+
import { TreeGrid, Selection, VirtualScroll } from '@syncfusion/ej2-treegrid';
2+
import { taskData } from './datasource';
33

4-
TreeGrid.Inject(Selection);
4+
TreeGrid.Inject(Selection, VirtualScroll);
55

66
let treegrid: TreeGrid = new TreeGrid({
77
dataSource: taskData,

0 commit comments

Comments
 (0)