File tree 1 file changed +36
-2
lines changed
1 file changed +36
-2
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ Import the Grid component first:
22
22
import { Grid } from " gridjs-react" ;
23
23
```
24
24
25
- and then:
26
-
27
25
``` jsx
28
26
< Grid
29
27
data= {[
@@ -41,6 +39,42 @@ and then:
41
39
42
40
Then you can pass all Grid.js configs to the ` Grid ` component. See [ Grid.js Config] ( https://gridjs.io/docs/config ) for more details.
43
41
42
+ ## React component in cells
43
+
44
+ You can bind your React components or elements in Table cells (both in header and body cells).
45
+ Simply import the ` _ ` function and use it in ` data ` , ` columns ` or ` formatter ` function:
46
+
47
+ ``` js
48
+ import { Grid , _ } from " gridjs-react" ;
49
+ ```
50
+
51
+ ``` jsx
52
+ < Grid
53
+ data= {[
54
+ [
55
+ _ (< b> John< / b> ),
56
+
57
+ ],
58
+ [
59
+ _ (< MyReactComponent> Mike< / MyReactComponent> ),
60
+
61
+ ]
62
+ ]}
63
+ columns= {[
64
+ ' Name' ,
65
+ {
66
+ name: ' Email' ,
67
+ formatter : (cell ) => _ (< i> {cell}< / i> )
68
+ }
69
+ ]}
70
+ search= {true }
71
+ pagination= {{
72
+ enabled: true ,
73
+ limit: 1 ,
74
+ }}
75
+ / >
76
+ ```
77
+
44
78
## Example
45
79
46
80
See the [ React example] ( https://gridjs.io/docs/integrations/react ) on Grid.js website.
You can’t perform that action at this time.
0 commit comments