Add new TimeFieldRenderer, make it default for Time fields

Uses a jQuery UI widget similar to datepicker:

https://fgelinas.com/code/timepicker/
This commit is contained in:
Lance Edgar 2016-03-24 00:06:04 -05:00
parent e13a58e808
commit 0f3f39d5c6
7 changed files with 1616 additions and 1 deletions

View file

@ -112,6 +112,13 @@ $(function() {
$('input[type=submit]').button();
$('input[type=reset]').button();
/*
* Apply timepicker behavior to text inputs which are marked for it.
*/
$('input[type=text].timepicker').timepicker({
showPeriod: true
});
/*
* When filter labels are clicked, (un)check the associated checkbox.
*/