mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
801 B
21 lines
801 B
@typeparam TEntity
|
|
@typeparam TResourceType
|
|
@using Abp.Localization
|
|
@using Blazorise.Components
|
|
@inherits ExtensionPropertyComponentBase<TEntity, TResourceType>
|
|
|
|
<Field>
|
|
<FieldLabel>@PropertyInfo.GetLocalizedDisplayName(StringLocalizerFactory)</FieldLabel>
|
|
<Autocomplete Data="@lookupItems"
|
|
TItem="SelectItem<object>"
|
|
TValue="object"
|
|
TextField="item => item?.Text!"
|
|
ValueField="item => item?.Value"
|
|
SelectedValue="@SelectedValue"
|
|
SelectedValueChanged="@SelectedValueChanged"
|
|
SearchChanged="@SearchFilterChangedAsync"
|
|
Validator="@Validate"
|
|
MinLength="0"
|
|
Disabled="IsReadonlyField">
|
|
</Autocomplete>
|
|
</Field>
|
|
|