-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathTreeGridConfig.json
More file actions
20 lines (20 loc) · 1.55 KB
/
TreeGridConfig.json
File metadata and controls
20 lines (20 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"searchSettings": { "fields": ["TaskName", "TaskID", "StartDate", "EndDate", "Duration", "Progress", "Priority"] },
"columnMenuItems": [ "AutoFitAll" , "AutoFit" , "SortAscending" , "SortDescending" , "ColumnChooser" , "Filter" ],
"filterSettings": { "type": "Menu", "mode": "Immediate", "showFilterBarStatus": true, "hierarchyMode": "Parent" },
"loadingIndicator": { "indicatorType":"Spinner" },
"selectionSettings": { "type": "Single" },
"sortSettings": { "columns": [ { "field": "TaskName", "direction": "Ascending" } ] },
"textWrapSettings": { "wrapMode": "Header" },
"toolbar": [ "Search", "ExpandAll", "CollapseAll", "ExcelExport", "PdfExport", "CsvExport", "Print", "ColumnChooser" ],
"columns": [
{ "field": "TaskName", "type": "string", "headerText": "TaskName", "showCheckbox": "true" },
{ "field": "TaskID", "type": "number", "headerText": "TaskID", "textAlign": "Right", "format": "N" },
{ "field": "StartDate", "type": "date", "headerText": "StartDate", "textAlign": "Right", "format": { "type": "date", "format": "M/d/yyyy" } },
{ "field": "EndDate", "type": "date", "headerText": "EndDate", "textAlign": "Right", "format": { "type": "date", "format": "M/d/yyyy" } },
{ "field": "Duration", "type": "", "headerText": "Duration", "textAlign": "Right", "format": "N" },
{ "field": "Priority", "type": "string", "headerText": "Priority", "textAlign": "Right" },
{ "field": "Progress", "type": "number", "headerText": "Progress", "format": "N" }
],
"pageSettings": { "pageCount": 5, "pageSize": 10, "pageSizes": false }
}