FluentSelect
wrap a web component of a select
.
+
+ Selected value: @defaultSelectedValue
+ Selected Employee: @defaultSelectedEmployee?.ToString();
+
Option<T>
Option<string>
items
+ Selected Value: @stringValue
+ Selected Item
+ Value: @selectedStringOption?.Value (Type: @(selectedStringOption?.GetType()))
+ Text: @selectedStringOption?.Text
+
Option<int>
items
+ Selected Value: @intValue
+ Selected Item
+ Value: @selectedIntOption?.Value (Type: @(selectedIntOption?.GetType()))
+ Text: @selectedIntOption?.Text
+
Option<string>
items where multiple can be selected
+ Selected string
+ @(selectedStringMultipleOptions == null ? "" : string.Join(',', selectedStringMultipleOptions.Select(v => v.Value)))
+