Is it possible to set value for RadioButtonList with hidden inputs? #563
Answered
by
YevgeniyShunevych
AngryTester95
asked this question in
Q&A
-
And I'd like to describe it as RadioBattonList, but inputs are hidden. Is it possible somehow to set value to hidden element from RadioBattonList control? |
Beta Was this translation helpful? Give feedback.
Answered by
YevgeniyShunevych
Oct 20, 2021
Replies: 1 comment 2 replies
-
Hi @AngryTester95, I don't see quick solution to configure [FindByValue("OPTIMIZED", Visibility = Visibility.Any)]
[ClicksUsingActions]
public RadioButton<_> OptimizedOnly { get; private set; }
[FindByValue("ORIGINAL", Visibility = Visibility.Any)]
[ClicksUsingActions]
public RadioButton<_> OriginalsOnly { get; private set; } You can also group them to a separate control class. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
AngryTester95
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @AngryTester95,
I don't see quick solution to configure
RadioButtonList
currently to work with hidden radio buttons. What you can do is to use a couple ofRadioButton
controls instead. Kind of:You can also group them to a separate control class.