1
0
-1
1 answer
- 10-1
Hi,
drag and drop a custom html at the bottom of the form and paste the following:
change your_field_id to the corresponding radio button field id.
<script> $(document).ready( function(){ $("input:radio[name=your_field_id]").parents("label").css('outline', 'none'); }); </script>
The above should work.
- CF
Thank you Ian.
Your answer works but I think it is a bug in Joget because of the inconsistency in behaviour.
Add your comment...
Hi,
When a I use a radio button there is a focus border on the first element, and which disappears when I click on the radio button. How do I prevent this border from showing up?
Happens when I use Default Form Options Binder. If I hardcode the options, the focus border does not show up.