-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfiltering-options.json
54 lines (54 loc) · 1.22 KB
/
filtering-options.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"todo": [ "add cell template for Discontinued field" ],
"skipAlterDataCasing": true,
"descriptions": {
"content": {
"type": "WebGrid",
"name": "grid",
"dataRef": "NwindData",
"moving": true,
"autoGenerate": false,
"allowFiltering": true,
"filterMode": "QuickFilter",
"columnList": [{
"type": "WebColumn",
"name": "ProductName",
"field": "ProductName",
"header": "Product Name"
},
{
"type": "WebColumn",
"name": "QuantityPerUnit",
"field": "QuantityPerUnit",
"header": "Quantity Per Unit"
},
{
"type": "WebColumn",
"name": "UnitPrice",
"field": "UnitPrice",
"header": "Unit Price",
"dataType": "Currency"
},
{
"type": "WebColumn",
"name": "OrderDate",
"field": "OrderDate",
"header": "Order Date",
"dataType": "Date"
},
{
"type": "WebColumn",
"name": "Discontinued",
"field": "Discontinued",
"header": "Discontinued",
"dataType": "Boolean"
}
]
}
},
"modules": [
"withDescriptions",
"layouts/PropertyEditorPanelModule",
"grids/WebGridModule"
]
}