-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Closed
Labels
DoneThis issue has been fixedThis issue has been fixedPriority:2Work that is important, but not critical for the releaseWork that is important, but not critical for the releaseUser StoryA single user-facing feature. Can be grouped under an epic.A single user-facing feature. Can be grouped under an epic.affected-mostThis issue impacts most of the customersThis issue impacts most of the customersarea-blazorIncludes: Blazor, Razor ComponentsIncludes: Blazor, Razor ComponentsenhancementThis issue represents an ask for new feature or an enhancement to an existing oneThis issue represents an ask for new feature or an enhancement to an existing onefeature-razor.languageseverity-majorThis label is used by an internal toolThis label is used by an internal tool
Milestone
Description
With the following code
<select name="cars" multiple onchange="@SelectionChanged">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
void SelectionChanged(UIChangeEventArgs e)
{
Console.WriteLine(e.Value);
}
Holding down the ctrl key, if you select 'volvo' first and then any other value, e.value is always 'volvo'. It basically returns the top selected item in the list.
ajruckman, XmlmXmlmX, VA-01, Tiberriver256, salaros and 29 moremrlife, AslanAmca and kolyanetchrdlx, AslanAmca and kolyanet
Metadata
Metadata
Assignees
Labels
DoneThis issue has been fixedThis issue has been fixedPriority:2Work that is important, but not critical for the releaseWork that is important, but not critical for the releaseUser StoryA single user-facing feature. Can be grouped under an epic.A single user-facing feature. Can be grouped under an epic.affected-mostThis issue impacts most of the customersThis issue impacts most of the customersarea-blazorIncludes: Blazor, Razor ComponentsIncludes: Blazor, Razor ComponentsenhancementThis issue represents an ask for new feature or an enhancement to an existing oneThis issue represents an ask for new feature or an enhancement to an existing onefeature-razor.languageseverity-majorThis label is used by an internal toolThis label is used by an internal tool