@@ -2202,7 +2202,8 @@ The provider function is called with the following signature:
22022202provider (ctx, [callback])
22032203```
22042204
2205- The ` ctx ` is the context object associated with the table state, and contains the following properties:
2205+ The ` ctx ` is the context object associated with the table state, and contains the following
2206+ properties:
22062207
22072208| Property | Type | Description |
22082209| ------------- | -------------------------- | --------------------------------------------------------------------------------- |
@@ -3063,11 +3064,11 @@ your app handles the various inconsistencies with events.
30633064 { isActive: false , age: 29 , name: { first: ' Dick' , last: ' Dunlap' } }
30643065 ],
30653066 fields: [
3066- { key: ' name' , label: ' Person Full name' , sortable: true , sortDirection: ' desc' },
3067+ { key: ' name' , label: ' Person full name' , sortable: true , sortDirection: ' desc' },
30673068 { key: ' age' , label: ' Person age' , sortable: true , class: ' text-center' },
30683069 {
30693070 key: ' isActive' ,
3070- label: ' is Active' ,
3071+ label: ' Is Active' ,
30713072 formatter : (value , key , item ) => {
30723073 return value ? ' Yes' : ' No'
30733074 },
@@ -3080,10 +3081,7 @@ your app handles the various inconsistencies with events.
30803081 totalRows: 1 ,
30813082 currentPage: 1 ,
30823083 perPage: 5 ,
3083- pageOptions: [5 , 10 , 15 , {
3084- value: 100 ,
3085- text: " show a lot"
3086- }],
3084+ pageOptions: [5 , 10 , 15 , { value: 100 , text: " Show a lot" }],
30873085 sortBy: ' ' ,
30883086 sortDesc: false ,
30893087 sortDirection: ' asc' ,
0 commit comments