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.
19 lines
712 B
19 lines
712 B
@typeparam TEntity
|
|
@typeparam TResourceType
|
|
@using Volo.Abp.BlazoriseUI
|
|
@using Volo.Abp.Localization
|
|
@inherits ExtensionPropertyComponentBase<TEntity, TResourceType>
|
|
|
|
@if (PropertyInfo != null && Entity != null)
|
|
{
|
|
<Validation Validator="@Validate" MessageLocalizer="@LH.Localize">
|
|
<Field>
|
|
<FieldLabel>@PropertyInfo.GetLocalizedDisplayName(StringLocalizerFactory)</FieldLabel>
|
|
<TextInput @bind-Value="@Value" Role="@PropertyInfo.GetTextRole()" InputMode="@PropertyInfo.GetTextInputMode()" Disabled="IsReadonlyField">
|
|
<Feedback>
|
|
<ValidationError/>
|
|
</Feedback>
|
|
</TextInput>
|
|
</Field>
|
|
</Validation>
|
|
}
|
|
|