
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2014 03:37 AM
Can anyone provide guidance on moving the Submit button on our record producer forms in our CMS environment?
We have a two fold problem where our ESS portal in CMS is configured for 16:9 (widescreen) format and the Submit button resides on the right hand side of our forms.
Those with 4:3 (square) monitors have most of the right side of their screen out of view.
Of course, this can be address by simply using scroll bars or zoom but some of our end users are not that technically astute and besides it just looks bad.
I want to both narrow up the field of view AND also move the Submit button to the left side of the form.
See screenshot
Hidden Submit Button
Solved! Go to Solution.
- Labels:
-
Service Portal

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2014 06:43 AM
I've moved it in the past with an onload client script. You could put it in a variable set and add the variable set to your record producers.
$$('.request_catalog_button')[0].up().up().down().hide();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-10-2016 04:01 PM
It's alright I found the answer from below.
Create a custom attachment button for your service catalog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-20-2016 06:06 AM
I am also have the same requirement to create custom submit button in record producer.
I used the below code but it is not working, we are in Geneva version.
$$('.request_catalog_button')[0].up().up().down().hide();
$('form_header').insert('<button style="float:right;" onclick="saveProducer(); return false;">Submit Request</button>');

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-20-2016 06:20 AM
We are running Helsinki.
I am using an onLoad Catalog Client Script applied to variable set called Move Submit Button.
I added some styling due to CMS, but it works nonetheless.
The code is:
function onLoad() {}
$$('.request_catalog_button')[0].up().up().down().hide();
$$('.request_catalog_button')[0].style='margin-left:45px';
$$('.request_catalog_button')[0].style.background='white';
$$('.request_catalog_button')[0].style.color='black';
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-20-2016 06:29 AM
I tried with the script $$('.request_catalog_button')[0].up().up().down().hide(); alone, it is hiding the 'cancel' button.
Also when I use the below script to create new button, nothing is happening.
$('form_header').insert('<button style="float:right;" onclick="saveProducer(); return false;">Submit Request</button>');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-06-2017 06:37 PM
Hi Kumaran,
Are you able to fix this ..