Hi All.
I would like to insert radio button group with three radio button into three cells of row. How to create radio button group and insert it to a table of row cells where each cell has own radio button?
Thanks.
Solved! Go to Solution.
Views
Replies
Total Likes
Here's another solution:
Combine subsequent cells of a row to a single cell.
Then create a new subform outside the table. In that subform you add you radio button group.
After that make the subform floating from left to right.
Select the subform, press [Ctrl]+[X] to cut it out.
Now select the combined cell in the table and press [Ctrl]+[V] to insert the subform there.
Views
Replies
Total Likes
Radio buttons need to be in a group together so only one can be selected. If they are in separate cells, it wont work.
However....you can just write some simple script so it works without it actually being in a group. You could do the same with checkboxes, rather than use radiobuttons.
Here is what i would do:
Basically, when one is clicked, the other two go off.
form1.#subform[0].Table1.Row1.a.rb.button::click - (JavaScript, client)
Table1.Row1.b.rb.button.rawValue = "0";
Table1.Row1.c.rb.button.rawValue = "0";
form1.#subform[0].Table1.Row1.b.rb.button::click - (JavaScript, client)
Table1.Row1.a.rb.button.rawValue = "0";
Table1.Row1.c.rb.button.rawValue = "0";
form1.#subform[0].Table1.Row1.c.rb.button::click - (JavaScript, client)
Table1.Row1.b.rb.button.rawValue = "0";
Table1.Row1.a.rb.button.rawValue = "0";
Views
Replies
Total Likes
Here's another solution:
Combine subsequent cells of a row to a single cell.
Then create a new subform outside the table. In that subform you add you radio button group.
After that make the subform floating from left to right.
Select the subform, press [Ctrl]+[X] to cut it out.
Now select the combined cell in the table and press [Ctrl]+[V] to insert the subform there.
Views
Replies
Total Likes
Hi radzmar.
That is exactly what I did.
Views
Replies
Total Likes