We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 579e779 commit 2e79344Copy full SHA for 2e79344
README.md
@@ -69,18 +69,20 @@ use unclead\widgets\MultipleInput;
69
],
70
[
71
'name' => 'day',
72
- 'type' => 'dropDownList',
+ 'type' => \kartik\date\DatePicker::className(),
73
'title' => 'Day',
74
'value' => function($data) {
75
return $data['day'];
76
},
77
- 'defaultValue' => 1,
78
'items' => [
79
'0' => 'Saturday',
80
'1' => 'Monday'
81
82
'options' => [
83
-
+ 'pluginOptions' => [
+ 'format' => 'dd.mm.yyyy',
84
+ 'todayHighlight' => true
85
+ ]
86
]
87
88
@@ -92,6 +94,7 @@ use unclead\widgets\MultipleInput;
92
94
93
95
96
]);
97
+?>
98
```
99
100
You can find more detail about this use case [here](docs/multiple_columns.md)
0 commit comments