Skip to content

Is it possible to set value for RadioButtonList with hidden inputs? #563

Discussion options

You must be logged in to vote

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 of RadioButton controls instead. Kind of:

[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.

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@AngryTester95
Comment options

@YevgeniyShunevych
Comment options

Answer selected by AngryTester95
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
2 participants