[ad_1]
Hello @denba
In the current plugin version, it would require to customize your plugin copy, or emulate the time component with dropdown fields. The plugin includes multiple alternatives to distribute the fields in columns. Please watch the following video:
For example, assuming that fieldname1 is a date field, fieldname2 is a dropdown list for hours, fieldname3 is another dropdown list for minutes, and fieldname4 is a third dropdown field for seconds.
As part of the equation you can include the piece of code:
let d = CONCATENATE(CDATE(fieldname1, 'yyyy/mm/dd'), ' ', fieldname2|r, ':', fieldname3|r, ':', fieldname4|r);Now the d variable contains a text with the format “yyyy/mm/dd hh:ii:ss” and you can use it with the Date/Time operations:
https://cff.dwbooster.com/documentation#datetime-module
Best regards.
