oracle,apex,oracleapexbd,How to show and hide password In Oracle Apex, How to show and hide password In Oracle Apex ?
How to show and hide password In Oracle Apex ?
How to show and hide password In Oracle Apex ?? How to show and hide password In Oracle Apex ?? 1, Goto P9999_PASSWORD Item >> Icon >> Paste the following code- fa-key 2. Advanced >> Custom Attributes >> Paste the following code- onchange="htmldb_item_change(this)" onkeydown="if (event.keyCode == 13) document.getElementById('LOGIN').focus();" 3. Post Text >> Paste the following code- 4. Goto Page Properties >> Function and Global Variable Declaration >> Paste the following code- function viewPassword()
{ var passwordInput = document.getElementById('P9999_PASSWORD');
var passStatus = document.getElementById('pass-status');
if (passwordInput.type == 'password'){
passwordInput.type='text';
passStatus.className='fa fa-eye-slash field-icon';
}
else{
passwordInput.type='password';
passStatus.className='fa fa-eye field-icon';
}} 5. Page Propert…
2 comments
Noah Liam
Post Text >> Paste the following code- no code is showing only icon is showing. When I paste nothing is pasted.