Ok, so here's a quick and easy solution, that will work in both standard service catalog AND service portal view (a neater solution could be coded that checks if 'I am in Service Portal' based on the url parameters for example, but below seems to do the trick):
(courtesy of https://www.servicenowguru.com/system-ui/ui-scripts-system-ui/modifying-label-form-fields-client-scripts/ )
function
onLoad() {
//shared functions for form load
//--this bit doesn't work in service portal!
var newLabelText='Select site';
try{
var labelElement = $('label_' + g_form.getControl('requested_for').id);
labelElement.select('.sn-tooltip-basic').each(function(elmt) {
elmt.innerHTML = newLabelText;
});
}catch (err){
//--will drop down to here in service portal, just allow
the code to continue...
}
//--this bit doesn't work in standard servicenow!
if (g_form.getLabelOf('requested_for')=='Requested for'){
g_form.setLabelOf('requested_for',newLabelText); //--service portal friendly
}
}
(courtesy of https://www.servicenowguru.com/system-ui/ui-scripts-system-ui/modifying-label-form-fields-client-scripts/ )
Comments
Post a Comment