I found that you can still access the old global search results whilst using the Next Experience by using this URL:
https://<INSTANCE_NAME>/now/nav/ui/classic/params/target/%24sn_global_search_results.do%3Fsysparm_search%3D<SEARCH_TERM>I just set up ...
Thanks for the great resource. Quick question, how do I find out which CSS hooks apply to which elements on a page. If I inspect HTML of a page I don't see hooks being used at all.
For the approval I use the following script:
answer = [];
var gr = new GlideRecord("u_generic_workflow_variables");
gr.addQuery("u_catalog_itemsLIKE" + current.cat_item);
gr.addQuery("u_role", current.variables.role);
gr.query();
if (gr.next()) {
va...
The OOB widget was called Approval Info. I cloned it and added my code so that when the reject button was pressed it popped up with the comments box. You would need to add similar code to the Resolve button on the Incident Details widget. I have atta...
Hi Raphael Dizon,
I had a similar requirement to ask for comments when someone rejected an approval request. I cloned the widget and used the $uibModal service to popup a message asking for comment. Then passed that back to the server to update the...