Inputs & Forms
Text input
Date & time
Show date picker
August 2026
Su
Mo
Tu
We
Th
Fr
Sa
26
27
28
29
30
31
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
1
2
3
4
5
08:0008:1508:3008:4509:0009:1509:3009:4510:0010:1510:3010:4511:0011:1511:3011:4512:0012:1512:3012:4513:0013:1513:3013:4514:0014:1514:3014:4515:0015:1515:3015:4516:0016:1516:3016:4517:0017:1517:3017:4518:00
Show date picker
June 2026
Su
Mo
Tu
We
Th
Fr
Sa
31
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
1
2
3
4
5
6
7
8
9
10
11
Number
pcs
days
Dropdown — Select
A flat single-select dropdown built from FluentMenu — the same FluentMenuButton/FluentMenuList pattern as the account menu on the Navigation page — instead of the native <FluentSelect>, giving full control over each option's markup. North DC — Hamburg North DC — Hamburg South DC — Munich East DC — Berlin
Dropdown — Tree select
A hierarchical picker built the same way: each FluentMenuItem nests its children in its own MenuItems content, which flies out as a submenu — no separate tree component required. Select an area… FactonNET Application Development System Integration Service API Web Applications FACTON Hub AI Documentation Chatbot Product Calculation Reporting Innovation Week Operational Management IT Infrastructure Compliance & Security
Multi-line text
Other controls
Usage
<FluentTextInput @bind-Value="text" Label="Material name" Placeholder="Enter name…" />
<FluentDatePicker @bind-Value="date" Label="Need-by date" />
<FluentNumberInput @bind-Value="qty" Label="Quantity" Min="0" Step="1">
    <EndTemplate><FluentText>pcs</FluentText></EndTemplate>
</FluentNumberInput>

<!-- Dropdown, built from FluentMenu instead of FluentSelect: -->
<FluentMenu>
    <FluentMenuButton><ChildContent>@selected.Label</ChildContent></FluentMenuButton>
    <FluentMenuList>
        @foreach (var option in options)
        {
            <FluentMenuItem Checked="@(option == selected)" OnClick="@(() => selected = option)">
                @option.Label
            </FluentMenuItem>
        }
    </FluentMenuList>
</FluentMenu>