Hello,
I'm having difficulty using more than one datetimepicker on the edit form.
When there are several datetimepicker the form by clicking on the second or third to bring up the calendar and choose the date, it behaves strangely and the cursor goes to the first datetimepicker, not changing any of the dates.
I need the form to be modal.
Any idea how to fix this?
1 Answers
There seems to be some conflict in datepicker and jqgrid, when multiple datepickers are used.
It only works when we disable modal dialog.
$grid["edit_options"]["modal"] = false;
$g->set_options($grid);
Your Answer