Take two datetime fields and link them into an inline date range picker with just a single line of javascript code (+our AppGini Helper JS Library of course).

Here is the Documentation and there is an AppGini Forum Post.
Take two datetime fields and link them into an inline date range picker with just a single line of javascript code (+our AppGini Helper JS Library of course).

Here is the Documentation and there is an AppGini Forum Post.
If you want a single field date picker instead, you can turn any datetime field into a dropdown datepicker now.

Please read the documentation for DatePicker first.
You will need two fields for this. It will work on datetime fields only, not on fields. So please ensure you turn both fields you want to change into dateDateTime first.
This will work on datetime fields only, not on fields. Please read the documentation for DatePicker first. date
new AppGiniFields( ["fieldname1", "fieldname2"] ).toDatepicker( "Label" );
// file: hooks/tasks-dv.js
new AppGiniFields( ["from_date", "to_date"] ).toDatepicker("Valid from/to");
