You are viewing limited content. For full access, please sign in.

Question

Question

Default Radio Buttons on Table

asked on August 21, 2017

Is there a way to default radio buttons on a table, and not have them all be the same. 

Example: all those are set to yes when we choose yes as a default, but is there a way to have it so some are yes and some are no?

0 0

Answer

SELECTED ANSWER
replied on August 21, 2017 Show version history

Hi Charlie,

It's possible with custom script:

$(document).ready(function(){
  $('input[name="Field1\(2\)"][value="no"], input[name="Field1\(4\)"][value="no"]').attr('checked', true);
})

This will change the selected value for Field1 in row 2 and 4 to be "no".

1 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.