try 2 of sortable
Browse files
README.md
CHANGED
@@ -1,3 +1,16 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
4 |
+
```json:table
|
5 |
+
{
|
6 |
+
"fields" : [
|
7 |
+
{"key": "a", "label": "AA", "sortable": true},
|
8 |
+
{"key": "b", "label": "BB"},
|
9 |
+
{"key": "c", "label": "CC"}
|
10 |
+
],
|
11 |
+
"items" : [
|
12 |
+
{"a": "11", "b": "22", "c": "33"},
|
13 |
+
{"a": "211", "b": "222", "c": "233"}
|
14 |
+
]
|
15 |
+
}
|
16 |
+
```
|