Moving a button on form header to left

RKumar3
Tera Guru

Hi All, Is there a way we can move the button on form header to left as shown in below screen? I tried for options in UI action but could not find any. Please let me know if there is a way to do so.

 

Capture 1.png

 

Many thanks in advance.

 

Rajnish

1 ACCEPTED SOLUTION

Chris M3
Tera Guru

It's possible, though I wouldn't suggest it.   You would need to create an On-Load client script that used prototype to actually move the button.   It looks like all of the buttons are within a span, which is within a td element.   Moving it out of the span and into the td element might do it.   Messing with the DOM in this way has the potential to cause issues in the future with upgrades.


View solution in original post

5 REPLIES 5

Chris M3
Tera Guru

It's possible, though I wouldn't suggest it.   You would need to create an On-Load client script that used prototype to actually move the button.   It looks like all of the buttons are within a span, which is within a td element.   Moving it out of the span and into the td element might do it.   Messing with the DOM in this way has the potential to cause issues in the future with upgrades.


Thanks Chris. As you suggested, probably not a good idea to move button to left. I will go for some other alternatives with my requirements. Regards, Rajnish


Sanjeev Kumar1
Kilo Sage

Hi,


Write some css for left-align for action .



For more details see .



CSS Theme Support - ServiceNow Wiki


Thanks Sanjeev.