We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4228fa6 commit 8749f80Copy full SHA for 8749f80
1 file changed
docs/_i18n/en/getting-started/usage.md
@@ -64,6 +64,19 @@ We can also use remote url data by setting `data-url="data1.json"` on a normal t
64
</thead>
65
</table>
66
```
67
+You can also add `pagination`, `search`, and `sorting` to a table like the following table.
68
+
69
+```html
70
+<table data-pagination="true" data-search="true" data-toggle="table" data-url="data1.json">
71
+ <thead>
72
+ <tr>
73
+ <th data-sortable="true" data-field="id">Item ID</th>
74
+ <th data-field="name">Item Name</th>
75
+ <th data-field="price">Item Price</th>
76
+ </tr>
77
+ </thead>
78
+</table>
79
+```
80
81
## Via JavaScript
82
0 commit comments