@@ -, +, @@ - The date acquired field (952$d) should have flatpickr styling. - Clicking in the field should populate the field with today's date and trigger the calendar popup. - Clicking the "..." next to the field should populate the field (when empty) with today's date. - Verify that tabbing from a different field into the date acquired field behaves the same as a click. --- cataloguing/value_builder/dateaccessioned.pl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) --- a/cataloguing/value_builder/dateaccessioned.pl +++ a/cataloguing/value_builder/dateaccessioned.pl @@ -34,15 +34,13 @@ my $builder = sub { /* from: cataloguing/value_builder/dateaccessioned.pl */ \$(document).ready(function(){ - \$("#$function_name").datepicker({ - dateFormat: "yy-mm-dd" + \$("#$function_name").flatpickr({ + dateFormat: "Y-m-d" }); }); function Focus$function_name(event) { set_to_today(event.data.id); - \$("#$function_name").datepicker("show"); - } function Click$function_name(event) { --