servicenow ui formatters to add specific content to form
uses a ui formatter
choose table
summary of item being approved: can be used using an OOTB formatter
(e.g. shows the ticket details read only below an approval record)
can use customised widget for portal view using fieldset in the html template
Classic UI : var sURL_editparam = gs . action . getGlideURI (). getMap (). get ( ' sysparm_aparameter ' ); if ( sURL_editparam == 'true' ) { gs . addInfoMessage ( 'parameter passed ); } Portal : var sURL_editparam = $sp . getParameter ( " sysparm_aparameter " ); if ( sURL_editparam == 'true' ) { gs . addInfoMessage ( 'parameter passed ); }
Comments
Post a Comment