Skip to content

Commit 13f6ac2

Browse files
committed
chore: docs
1 parent 4d9b293 commit 13f6ac2

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

docs/examples.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# FAQ
22

3-
How to force render a table?
3+
**How to force render a table?**
44
- ReactTabulator automatically rerenders when data, columns or options changed.
55
- In case you want to force render it, you can set the component "key" to something else like:
66

@@ -12,15 +12,15 @@ on change: setTableKey(`${Math.random()}`)
1212
<ReactTabulator key={tableKey} ref={tableRef} columns={columns} data={data}
1313
```
1414

15-
How to set Tabulator's options?
15+
**How to set Tabulator's options?**
1616
- ReactTabulator "options" prop will be passed directly to Tabulator's options when initializing the table.
1717

18-
How to call Tabulator's functions?
18+
**How to call Tabulator's functions?**
1919
- Use "ref.table" to access to all tabulator functions. [Example](https://github.com/ngduc/react-tabulator/blob/master/src/ReactTabulatorExample.tsx#L83).
2020

2121
# Live Examples
2222

23-
React-tabulator version may not be the latest in these examples.
23+
*React-tabulator version may not be the latest in these examples.*
2424

2525
- Example - Live Demo: [Codesandbox](https://codesandbox.io/s/0mwpy612xw?module=/src/components/Home.js)
2626
- Example - Source code: [/src/ReactTabulatorExample.tsx](/src/ReactTabulatorExample.tsx)
@@ -31,6 +31,9 @@ Themes:
3131
Columns:
3232
- Dynamically set columns - [Link](https://codesandbox.io/s/react-tabulator-examples-6ldg3?file=/src/components/Home.js)
3333

34+
Rows:
35+
- Row selection - [Link](https://codesandbox.io/s/react-tabulator-row-selection-v9d4x?file=/src/components/Home.js)
36+
3437
Data:
3538
- Dropdown to filter table data - [Link](https://codesandbox.io/s/react-tabulator-examples-vs7vq?file=/src/components/Home.js)
3639
- Performance - render a lot of data with faker - [Link](https://codesandbox.io/s/react-tabulator-performance-demo-forked-3rqp2)
@@ -65,6 +68,11 @@ https://github.com/dotadraft/dotadraft_ui
6568

6669
<hr />
6770

71+
Stock Portfolio
72+
<img src="https://i.ibb.co/zJCCVG7/image.png">
73+
74+
<hr />
75+
6876
## Other Projects
6977

7078
- https://github.com/Back2bikes/attendance

0 commit comments

Comments
 (0)