1
0
mirror of synced 2024-11-23 22:41:01 +01:00

Switch title field between dropdown and textbox

This commit is contained in:
TLH 2022-09-15 13:08:19 +09:00
parent c5ec3819fb
commit df13336615

View File

@ -20,7 +20,15 @@
<MudGrid>
<MudItem xs="12" md="8">
<MudAutocomplete @bind-Value="@response.Title" Label="Title" SearchFunc="@SearchForTitle" CoerceValue="true" MaxItems="@GameDataService.PLAYER_TITLE_MAX" />
@if (EnterTextDirectly)
{
<MudTextField @bind-Value = "@response.Title" Label = "Title"></MudTextField>
}
else
{
<MudAutocomplete @bind-Value = "@response.Title" Label = "Title" SearchFunc = "@SearchForTitle" CoerceValue = "true" MaxItems = "@GameDataService.PLAYER_TITLE_MAX" />
}
<MudSwitch @bind-Checked="EnterTextDirectly" Class="mud-width-full" Color="Color.Primary">Enter Text Directly</MudSwitch>
</MudItem>
<MudItem xs="12" md="4">
<MudSelect @bind-Value="@response.TitlePlateId" Label="Title Plate">
@ -206,4 +214,8 @@
</MudItem>
</MudGrid>
@code {
private bool EnterTextDirectly;
}
}