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
label | string | Basic translation label shown in the header of the table. Defaults to the name of the column.
249
+
data | string/callable/`null` | The default value if a `null` value is encountered, or a callable function to transform data.
250
+
field | string/`null` | A field mapping to be used by adapters to fill data.
251
+
propertyPath | string/`null` | A property path to be applied to the raw adapter row data.
252
+
visible | bool | Whether the column will be visible. Default true.
253
+
orderable | bool/`null` | Whether the column can be sorted upon. Defaults to the presence of the `orderField`.
254
+
orderField | string/`null` | The field to order by when the column is sorted. Defaults to the value of `field`.
255
+
searchable | bool/`null` | Whether the column can be searched upon. Defaults to the presence of `field`.
256
+
globalSearchable | bool/`null` | Whether the column participates in global searches. Defaults to the presence of `field`.
257
+
className | string/`null` | A CSS class to be applied to all cells in this column.
258
+
render | string/callable/`null` | Either a [`sprintf` compatible format string](http://php.net/manual/en/function.sprintf.php), or a callable function providing rendering conversion, or default `null`.
DateTime columns render a `\DateTimeInterface` implementing class, such as `\DateTime`, to a string
282
+
result. If data of other types is encountered automatic conversion is attempted following [common PHP formats](http://php.net/manual/en/datetime.formats.php).
283
+
284
+
Option | Type | Description
285
+
------ | ---- | -----------
286
+
format | string | A date format string as accepted by the [`date()`](http://php.net/manual/en/function.date.php) function. Default `'c'`.
0 commit comments