AUR0654
Error Message
Description
Cause
Solution
<select value.bind="selectedItems" multiple> <!-- options --> </select><select value.bind="selectedItem"> <!-- options --> </select>// View Model export class MyViewModel { selectedItem: string = 'option2'; // Bind a single value // selectedItems: string[] = ['option1', 'option3']; // Don't bind this array to a single-select }
Example
Debugging Tips
Last updated
Was this helpful?