Dear Team,
I Need to Format Report Parameter as PASSWORD INPUT to mask the entry when user run the report.
Thank you for your help ...
Dear Team,
I Need to Format Report Parameter as PASSWORD INPUT to mask the entry when user run the report.
Thank you for your help ...
To change the input type to be a password field, do following:
1.
<script>
2.
$(document).ready(
function
() {
3.
$(
'.param_input .password input'
).attr(
'type'
,
'password'
);
4.
});
5.
</script>
You could also directly change the paramerer via it's position, but doing it via a CSS class allows for you to change report parameters without any change in the code above.
--
myDBR Team
Thanks a lot myDBR Team it's working ...
You must log in to post.