You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A way to custome the selection header cell. `headerColumnStyle` not only accept a simple style object but also a callback function for more flexible customization:
205
+
206
+
### Style Object
207
+
208
+
```js
209
+
constselectRow= {
210
+
mode:'checkbox',
211
+
headerColumnStyle: { backgroundColor:'blue' }
212
+
};
213
+
```
214
+
215
+
### Callback Function
216
+
217
+
```js
218
+
constselectRow= {
219
+
mode:'checkbox',
220
+
headerColumnStyle: (status) => (
221
+
// status available value is checked, indeterminate and unchecked
0 commit comments