Probably a simple script for some of you veterans, but as a rookie, I’m stumped. Could someone help with converting hours to days, hours and minutes (e.g., 619 hours = xx days, xx hours and xx minutes)? FormCalc or Javascript. Thanx in advance.
Solved! Go to Solution.
Views
Replies
Total Likes
I know its a slight overkill and may not support your exact requirement, but AEM has an OOTB library that can help you with any date conversion. - moment.js
Moment JS can be found at [1], category name 'moment'
You can use various conversions as mentioned in [2]
[1] - /libs/clientlibs/granite/moment
Views
Replies
Total Likes
@Daniel_Claire If I am correct... You can try with following js code
var days = Math.floor(providedHrs/24);
var remainder = providedHrs % 24;
var hrs = Math.floor(remainder);
var min = Math.floor(60*(remainder-hrs));
Hope this will help you to solve your query...
Adding to above answer just make sure you have proper checks for day, hrs and min
https://stackoverflow.com/questions/49844323/javascript-convert-hours-and-minutes-into-days/49844499
Views
Replies
Total Likes
I know its a slight overkill and may not support your exact requirement, but AEM has an OOTB library that can help you with any date conversion. - moment.js
Moment JS can be found at [1], category name 'moment'
You can use various conversions as mentioned in [2]
[1] - /libs/clientlibs/granite/moment
Views
Replies
Total Likes
Could someone help with displaying the duration between two different dates and times in hours, and days and hours, if possible? I've reviewed almost every post related to this subject in the forums and tried virtually every recommendation out there, but I can't figure it out. Here's the form if anyone can assist. Date and time duration. Thank you in advance.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies