-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathComboBoxPage.razor
More file actions
40 lines (31 loc) · 2.23 KB
/
ComboBoxPage.razor
File metadata and controls
40 lines (31 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
@page "/mudcombobox"
@namespace MudExtensions.Docs.Pages
<ExamplePage Component="typeof(MudComboBox<string>)">
<ExampleCard ComponentName="ComboBox" ExampleName="ComboBoxExample1" Title="Basics & Visual" Description="MudComboBox contains both MudSelect and MudAutocomplete features.">
<ComboBoxExample1 />
</ExampleCard>
<ExampleCard ComponentName="ComboBox" ExampleName="ComboBoxExample7" Title="Editable & Highlight" Description="Items become searchable when Editable parameter is true.">
<ComboBoxExample7 />
</ExampleCard>
<ExampleCard ComponentName="ComboBox" ExampleName="ComboBoxExample2" Title="Selection Mode" Description="MudComboBox has 3 selection modes: SingleSelection, ToggleSelection and MultiSelection">
<ComboBoxExample2 />
</ExampleCard>
<ExampleCard ComponentName="ComboBox" ExampleName="ComboBoxExample3" Title="MultiSelection Details & SelectAll" Description="You can hide CheckBox or add border to multiselectable items.">
<ComboBoxExample3 />
</ExampleCard>
<ExampleCard ComponentName="ComboBox" ExampleName="ComboBoxExample4" Title="Popover Content Customization" Description="You can customize popover content using PopoverStartContent or PopoverEndContent">
<ComboBoxExample4 />
</ExampleCard>
<ExampleCard ComponentName="ComboBox" ExampleName="ComboBoxExample5" Title="Chips, Text and ItemContent" Description="You can customize the view inside the input.">
<ComboBoxExample5 />
</ExampleCard>
<ExampleCard ComponentName="ComboBox" ExampleName="ComboBoxExample6" Title="Chip Customization" Description="MudComboBox supports to customize chips.">
<ComboBoxExample6 />
</ExampleCard>
<ExampleCard ComponentName="ComboBox" ExampleName="ComboBoxExample8" Title="Search Func" Description="SearchFunc parameter passes 3 thing in order: Value, Text and SearchString. This example shows the usage of SearchFunc">
<ComboBoxExample8 />
</ExampleCard>
<ExampleCard ComponentName="ComboBox" ExampleName="ComboBoxExampleKeyboardNavigation" Title="Keyboard Navigation" Description="Supported keys are showing below." ShowCodeSection="false">
<ComboBoxExampleKeyboardNavigation />
</ExampleCard>
</ExamplePage>