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
Copy file name to clipboardExpand all lines: docs/configuration.md
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -110,6 +110,24 @@ function($data) {}
110
110
111
111
**tabindex**_integer_: use it to customize a form element `tabindex`
112
112
113
+
**columnOptions**_array|\Closure_ the HTML attributes for the indivdual table body column. This can be either an array specifying the common HTML attributes for indivdual body column, or an anonymous function that returns an array of the HTML attributes.
114
+
115
+
It should have the following signature:
116
+
```php
117
+
function ($model, $index, $context)
118
+
```
119
+
*`$model`: the current data model being rendered
120
+
*`$index`: the zero-based index of the data model in the model array
121
+
*`$context`: the widget object
122
+
123
+
_Supported versions >= 2.18.0_
124
+
125
+
**inputTemplate**_string_ the template of input for customize view. Defailt is `{input}`.
0 commit comments