Is there a way to show a ribbon below transaction#...
# administration
n
Is there a way to show a ribbon below transaction# and above the buttons on transaction forms?
k
Something like this could be done with a HMTL field injecting script into the page - not officially supported and a good way to wind up wasting time figuring out why something doesn't work after updates so it's very discouraged
You can use messages to display above where the Sales Order text is- though I know not the exact code to do it.
I think the options are red/yellow/green
and it displays some text and you tell it how long it displays. Client script if I recall correctly - and that would be something that is supported
n
Thanks, Kevin! That’s very helpful.
e
I 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)'); } } } }
Good reading from @netsuite_insights before you start with DOM manipulations