- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-19-2016 10:20 AM
Hi,
I need to change the name of a button on the Order Guide. It is the "Choose Options" button.
I already did it before by going to UI messages and changing the "choose options" there, but I need it only change on the buttons in this case, and not the process flow.
Because if I change it in UI messages, it changes the name on the process flow as well. I do not want that.
I tried looking in the UI page com.glideapp.servicecatalog_cat_item_guide_view and see that the button is generated here:
<td style="white-space: nowrap; padding-right: 5px; float: right">
<g:inline template="com.glideapp.servicecatalog_guide_tabs_controls.xml" />
</td>
I just want to know where I can find the label of the button itself and change it? I tried searching for com.glideapp.servicecatalog_guide_tabs_controls.xml under UI macros, script includes, UI messages, UI pages, but I can't seem to find it anywhere.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-19-2016 10:50 AM
Vibee,
One thing you could do is create a UI script and check the global checkbox, then add an onLoadEvent and put this script in there.
addLoadEvent(function (){
if($('next_page')){
if($('next_page').innerHTML=="Choose Options"){
$('next_page').innerHTML="Application Details";}
}
});

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-19-2016 10:22 AM
Hi Vibee,
You need to change it from the message module. Search for key with Choose options and change the value as per your req.
Please note this would be a global change. Replace below link with YOURINSTANCENAME and check the record.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-19-2016 10:24 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-19-2016 10:27 AM
As I mentioned it would be a global change in the system. Unfortunately this is not possible unless you customize the OOTB code.
I am not sure if admin has access to modify the page.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-19-2016 10:50 AM
Vibee,
One thing you could do is create a UI script and check the global checkbox, then add an onLoadEvent and put this script in there.
addLoadEvent(function (){
if($('next_page')){
if($('next_page').innerHTML=="Choose Options"){
$('next_page').innerHTML="Application Details";}
}
});