I am retrieving a date field from a database query service and mapping it to an input component of type time, but no time value is being set. I have tried to use different formats but have not been successful.
I am retrieving a date field from a database query service and mapping it to an input component of type time, but no time value is being set. I have tried to use different formats but have not been successful.
Please try to add ("Add JS") below code to the service mapping date field:
pre
code
var time = /\s(\d\d\:\d\d:\d\d)/gi.exec(value)[1];
return time;
/code
/pre