FluentAutoComplete not working #2879
Unanswered
imroatulfaizah
asked this question in
Q&A
Replies: 1 comment 2 replies
-
i use editcontext |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
so, i have a form like this
when I click the X function (clear), it's freeze.
what should i do?
I browsing and get this information:
we use
`
<FluentAutocomplete TOption="ms_data"
AutoComplete="off"
Label="Status Flag"
Placeholder="Select Status Flag"
OnOptionsSearch="@OnSearchAsyncStatusFlag"
OptionText="@(item => item.description)"
OptionValue="@(item => item.code)"
MaximumSelectedOptions="1"
Style="width:100%;"
Id="ListStatusFlag"
@bind-SelectedOptions="@ListStatusFlag"
@bind-SelectedOptions:after="OnStatusFlagSelected"
@bind-Value="@content.status_flag"
Required />
Beta Was this translation helpful? Give feedback.
All reactions