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:
<script>
$(document).ready(function() {
$('.param_input .password input').attr('type', 'password');
});
</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.