Skip to content

Change value of HTML select multiple element #1683

Answered by linkdotnet
MarkusRodler asked this question in Q&A
Discussion options

You must be logged in to vote

Okay @egil and I had a look at this. The reason the current approach doesn't work is because the parent of your MultiSelect is your test itself.

Basically, ValueChanged="x => PersonsChanged.InvokeAsync(x)" means: "Hey, I have a change and here it is". And now the parent is responsible to propagate the changed value down again (to your MultiSelect). But the test, doesn't do that as it isn't a normal ComponentBase and tracked by the renderer.

That said, if you assign your Persons directly (so you are not relying on the outside world) it works:

ValueChanged="x => PersonsChanged.InvokeAsync(Persons = x)"

Of course you can make that a bit prettier :D

Replies: 2 comments 5 replies

Comment options

linkdotnet
Mar 7, 2025
Maintainer Sponsor

You must be logged in to vote
0 replies
Comment options

linkdotnet
Mar 7, 2025
Maintainer Sponsor

You must be logged in to vote
3 replies
@MarkusRodler
Comment options

@linkdotnet
Comment options

linkdotnet Mar 7, 2025
Maintainer Sponsor

@MarkusRodler
Comment options

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