Service Portal: Add info message
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2017 06:45 PM
Hi,
Whenever user submits the incident (something is broken)we get the below mentioned info message in the incident page.The same incident when we submit in portal it showing same message.We want to override this message as want to redirect to other page in service portal .Could some please help me here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2017 03:00 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2017 03:15 AM
Oh...... the problem is i used my own customized portal where i have no OOB Codes and all is customized... AND earlier i mentioned this will be easy if you are using customized pages not OOB, as it is never advised to change OOB page. So this now becomes a little twisted task... can you get me the XML/jelly code of sc_cat_item...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2017 03:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2017 03:59 AM
ok ... i am not sure about this but you can give it a try in your personal dev first...
1) create a duplicate of sc_cat_item and name it sc_cat_item_1 //we will not change anything in OOB page...hence assign the new created page to the page in widget.
2)in XML of the sc_cat_item_1 add in <template> at last..:
<template>................
...
..
<script>
var msg= document.getElementById('id_of_the message'); //to get it press f12 and from DOM inspector find the id of the box
msg.innerHTML = 'your custom message';
</script>
</template>
note: this is untested code .. please first use in your personal instance and then proceed further.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2017 10:27 AM