|
139 | 139 | { |
140 | 140 | "prop": "primaryKey", |
141 | 141 | "description": "Name of a table field that contains a guaranteed unique value per row. Needed for tbody transition support, and also speeds up table rendering" |
| 142 | + }, |
| 143 | + { |
| 144 | + "prop": "busy", |
| 145 | + "description": "When set, forces teh table into the busy state.Automatically set when an items provider function is being called" |
| 146 | + }, |
| 147 | + { |
| 148 | + "prop": "noProviderPaging", |
| 149 | + "description": "When set, uses internal paging to pagination the data. Otherwise the items provider is expected to perform the paging" |
| 150 | + }, |
| 151 | + { |
| 152 | + "prop": "noProviderSorting", |
| 153 | + "description": "When set, uses internal sorting to sort the data. Otherwise the items provider is expected to perform the sorting" |
| 154 | + }, |
| 155 | + { |
| 156 | + "prop": "noProviderFiltering", |
| 157 | + "description": "When set, uses internal filtering to pagination the data. Otherwise the provider is expected to perform the filtering" |
| 158 | + }, |
| 159 | + { |
| 160 | + "prop": "apiUrl", |
| 161 | + "description": "Pass through prop. Passed as part of the context object sent to the items provider function" |
| 162 | + }, |
| 163 | + { |
| 164 | + "prop": "perPage", |
| 165 | + "description": "Number of rows to show per page. Set to 0 to disable pagination" |
| 166 | + }, |
| 167 | + { |
| 168 | + "prop": "currentPage", |
| 169 | + "description": "The current page number to display when the table is paginated. Starting from 1 and up" |
| 170 | + }, |
| 171 | + { |
| 172 | + "prop": "noLocalSorting", |
| 173 | + "description": "Disabled the internal sorting routine, and expects teh user to provde teh items sorted. Sorting controls will still be available" |
| 174 | + }, |
| 175 | + { |
| 176 | + "prop": "noFooterSorting", |
| 177 | + "description": "When the build in forrter is used, setting this prop will disable the sorting ability in the footer" |
| 178 | + }, |
| 179 | + { |
| 180 | + "prop": "sortIconLeft", |
| 181 | + "description": "Positions the sort control to the left of the header text. Default is on the right of the header text" |
| 182 | + }, |
| 183 | + { |
| 184 | + "prop": "noSortReset", |
| 185 | + "description": "When a table is sortable, cliking on any non-sortable column heading will clear the current sort values. Set this prop to disable this feature" |
| 186 | + }, |
| 187 | + { |
| 188 | + "prop": "sortNullLast", |
| 189 | + "description": "When sorting, null and undefined values will be sorted first (or last, depending on 'sort-desc'). Set this prop to sort null values last. Only applicable to internal sorting" |
| 190 | + }, |
| 191 | + { |
| 192 | + "prop": "sortBy", |
| 193 | + "description": "Field name that is currently being sorted. Set to null to clear sorting. Syncable with the .sync prop modifier" |
| 194 | + }, |
| 195 | + { |
| 196 | + "prop": "sortDesc", |
| 197 | + "description": "Set to true to sort the column in descending order. Syncable with the .sync prop modifier" |
| 198 | + }, |
| 199 | + { |
| 200 | + "prop": "sortDirection", |
| 201 | + "description": "The initial sorting direction to sort an unsorted column by: 'asc', 'desc', or 'last' (to use the previous sort direction)" |
| 202 | + }, |
| 203 | + { |
| 204 | + "prop": "sortCompare", |
| 205 | + "description": "A reference to a function for sort-comparing tow rows of data. Defaults to the internal sort compare routine. See docs for details" |
| 206 | + }, |
| 207 | + { |
| 208 | + "prop": "sortCompareOptions", |
| 209 | + "description": "An object containing sort configuration for the 'String.prototype.sortLocale' method. See docs for details" |
| 210 | + }, |
| 211 | + { |
| 212 | + "prop": "sortCompareLocale", |
| 213 | + "description": "The locale string (or array of locale string) taht specified the languagewhen sorting. See docs for details" |
| 214 | + }, |
| 215 | + { |
| 216 | + "prop": "labelSortAsc", |
| 217 | + "description": "String to place in the header cell's 'aria-label' when clicking the cell will change the sort direction to ascending" |
| 218 | + }, |
| 219 | + { |
| 220 | + "prop": "labelSortDesc", |
| 221 | + "description": "String to place in the header cell's 'aria-label' when clicking the cell will change the sort direction to descending" |
| 222 | + }, |
| 223 | + { |
| 224 | + "prop": "labelSortClear", |
| 225 | + "description": "String to place in the header cell's 'aria-label' when clicking the cell will clear the current sorting direction" |
142 | 226 | } |
143 | 227 | ], |
144 | 228 | "events": [ |
|
0 commit comments