Nicole
02/17/2022, 11:09 PMKevinJ of Kansas
02/17/2022, 11:26 PMKevinJ of Kansas
02/17/2022, 11:26 PMKevinJ of Kansas
02/17/2022, 11:26 PMKevinJ of Kansas
02/17/2022, 11:27 PMNicole
02/17/2022, 11:28 PMEric B
02/17/2022, 11:57 PMI use this on my client scripts to display additional messaging using the status
function displayStatus(dayspending) {
if (parseInt(dayspending) > 0) {
if (jQuery('.uir-record-status')) {
var status = jQuery('.uir-record-status').html();
if (status.indexOf('Pending') != -1) {
jQuery('.uir-record-status').append(' : ' + dayspending + ' day(s)');
}
}
}
}michoel
02/18/2022, 2:23 AM