* pivot: replace the input widget with datePicker widget.

This commit is contained in:
liugang
2023-11-07 08:57:18 +08:00
parent 2023fcf238
commit 5f89e37ea8
3 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -65,13 +65,13 @@ $generateData = function() use ($lang, $title, $cols, $executions, $chartData, $
(
setClass('w-1/4'),
$lang->pivot->execution . $lang->pivot->begin,
input(set(array('name' => 'begin', 'type' => 'date', 'value' => $begin)))
datePicker(set(array('name' => 'begin', 'value' => $begin)))
),
inputGroup
(
setClass('w-1/4'),
$lang->pivot->execution . $lang->pivot->end,
input(set(array('name' => 'end', 'type' => 'date', 'value' => $end)))
datePicker(set(array('name' => 'end', 'value' => $end)))
)
),
panel