
- 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-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
‎04-14-2014 11:57 AM
Hi ,
Is it possible to move submit button on header of catalog item,similar to Submit button on Incident form?
Any help in this regard will be highly appreciated.
Sami.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-14-2014 07:58 PM
Hi Sami,
You could use some javascript to insert some html into the header, but it's really a hack.
On an item you can do:
$('form_header').insert('<button style="float:right;" onclick="orderNow();">Submit</button>');
Or on a record producer:
$('form_header').insert('<button style="float:right;" onclick="saveProducer(); return false;">Submit</button>');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-15-2014 02:39 AM
many thanks b-rad,it worked fine.
Can we change the position to right side before the attachment icon?
Sami.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-26-2017 01:46 PM
Hi Brad,
Where would I write this code on my record producer?
$('form_header').insert('<button style="float:right;" onclick="saveProducer(); return false;">Submit</button>');