1
0
-1

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.

 

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -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.


      1. CF

        Thank you Ian.

        Your answer works but I think it is a bug in Joget because of the inconsistency in behaviour.

      CommentAdd your comment...