Unifier (MOSC)

MOSC Banner

Unifier Web App Programmers: Please update the "Change Password" dialog box to allow a person to hit

edited Feb 28, 2019 9:26AM in Unifier (MOSC) 2 commentsAnswered

Very simply you can modify the following line in \ROOT\WEB-INF\webant\bluedoor\LoginForm2.vm

it is in the last hidden form in that file with a <form id = ""changePWD"...>

the input type has SUBMIT on the CANCEL button, you just need to switch them.

E.G.

Change:

<input  type="button" class="btn btn-action right" style="width:63px;height:30px;font-size: 12px !important;line-height: 25px;" value="$web.translate("OK")" onclick="return cpSubmitForm();"/> 
<input  type="submit" class="btn btn-action" value="$web.translate("Cancel")" style="width:63px;height:30px;font-size: 12px !important;line-height: 25px;" onclick="cancelChangePwd();"/>

to:

<input  type="submit" class="btn btn-action right" style="width:63px;height:30px;font-size: 12px !important;line-height: 25px;" value="$web.translate("OK")" onclick="return cpSubmitForm();"/> 

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center