12-23-2022, 11:06 AM
In text box component, under properties in display content need to add this script:
<style>input:focus {outline:none;}::placeholder</style><input id="Target_filter_search01" autocomplete="off" placeholder="Enter Your Name"
style = "width: 100%; height : 100%; padding :0px 0px 0px 10px;border : 0px; border-radius: 0px; background : #f2f0f0;"/>
<style> input:focus { outline:none; } </style> <script>
To get the value, in scripting side:
var a = $('#Target_filter_search01').val();
<style>input:focus {outline:none;}::placeholder</style><input id="Target_filter_search01" autocomplete="off" placeholder="Enter Your Name"
style = "width: 100%; height : 100%; padding :0px 0px 0px 10px;border : 0px; border-radius: 0px; background : #f2f0f0;"/>
<style> input:focus { outline:none; } </style> <script>
To get the value, in scripting side:
var a = $('#Target_filter_search01').val();