How to Show Hide Password Mask in Oracle Apex | Mr Gactack

Опубликовано: 19 Май 2026
на канале: Mr Gactack
341
5

Hi guys in this video i am going to show you how to show hide password mask in Oracle Apex.

Password field Properties:-
change this Brackets () with greater than and less than

Type: Password
Post Text Section: (i id="pass-status" class="fa fa-eye field-icon" aria-hidden="true" onClick="viewPassword()")(/i)

Page Properties:-

function viewPassword()
{
var passwordInput = document.getElementById('P9999_PASSWORD'); // field Name
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';
}
}

inline:-

.field-icon {
right : 30px;
margin-left: -25px;
margin-top: 14px;
position: sticky;
z-index: 2;
}

Oracle Developer , Database , Oracle Apex , Oracle Apex Tutorial , show hide password mask , step by step , how , how to
--------------
if You enjoy this video please Like and Subscribe!

Channel By: Mr Gactack