mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Adding arrival/departure time to the registration form
This commit is contained in:
parent
6ad491982e
commit
a76854c414
100 changed files with 2156 additions and 86 deletions
|
|
@ -27,15 +27,20 @@ $(function() {
|
|||
}
|
||||
});
|
||||
|
||||
$("#conference-reg-start-datepicker").datepicker({
|
||||
dateFormat: 'yy/mm/dd',
|
||||
$("#conference-reg-start-datepicker").datetimepicker({
|
||||
dateFormat: "yy-mm-dd",
|
||||
timeFormat: "HH:mm",
|
||||
showSecond: false,
|
||||
numberOfMonths: 2,
|
||||
onSelect: function(selected) {
|
||||
$("#conference-reg-end-datepicker").datepicker("option","minDate", selected)
|
||||
}
|
||||
});
|
||||
$("#conference-reg-end-datepicker").datepicker({
|
||||
dateFormat: 'yy/mm/dd',
|
||||
|
||||
$("#conference-reg-end-datepicker").datetimepicker({
|
||||
dateFormat: "yy-mm-dd",
|
||||
timeFormat: "HH:mm",
|
||||
showSecond: false,
|
||||
numberOfMonths: 2,
|
||||
onSelect: function(selected) {
|
||||
$("#conference-reg-start-datepicker").datepicker("option","maxDate", selected)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue