Show / Hide Table of Contents

Class DynamicFormsDemoModel.DetailedModel

Inheritance
object
DynamicFormsDemoModel.DetailedModel
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo.Views.Components.Themes.Shared.Demos.DynamicFormsDemo
Assembly: Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo.dll
Syntax
public class DynamicFormsDemoModel.DetailedModel

Constructors

DetailedModel()

Declaration
public DetailedModel()

Properties

Age

Declaration
[Required]
[Display(Name = "Age")]
public int Age { get; set; }
Property Value
Type Description
int

Country

Declaration
[SelectItems("CountryList")]
[Display(Name = "Country")]
public string Country { get; set; }
Property Value
Type Description
string

Day

Declaration
[DataType(DataType.Date)]
[Display(Name = "Day")]
public DateTime Day { get; set; }
Property Value
Type Description
DateTime

Description

Declaration
[TextArea(Rows = 4)]
[Display(Name = "Description")]
[InputInfoText("Describe Yourself")]
public string Description { get; set; }
Property Value
Type Description
string

IsActive

Declaration
[Display(Name = "Is Active")]
public bool IsActive { get; set; }
Property Value
Type Description
bool

MyCarType

Declaration
[Required]
[Display(Name = "My Car Type")]
public DynamicFormsDemoModel.CarType MyCarType { get; set; }
Property Value
Type Description
DynamicFormsDemoModel.CarType

Name

Declaration
[Required]
[Placeholder("Enter your name...")]
[Display(Name = "Name")]
public string Name { get; set; }
Property Value
Type Description
string

NeighborCountries

Declaration
[SelectItems("CountryList")]
[Display(Name = "Neighbor Countries")]
public List<string> NeighborCountries { get; set; }
Property Value
Type Description
List<string>

Password

Declaration
[Required]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
Property Value
Type Description
string

YourCarType

Declaration
[Required]
[AbpRadioButton(Inline = true)]
[Display(Name = "Your Car Type")]
public DynamicFormsDemoModel.CarType YourCarType { get; set; }
Property Value
Type Description
DynamicFormsDemoModel.CarType

Extension Methods

AbpObjectExtensions.As<T>(object)
AbpObjectExtensions.To<T>(object)
LockExtensions.Locking(object, Action)
LockExtensions.Locking<TResult>(object, Func<TResult>)
AbpObjectExtensions.If<T>(T, bool, Action<T>)
AbpObjectExtensions.If<T>(T, bool, Func<T, T>)
AbpObjectExtensions.IsIn<T>(T, IEnumerable<T>)
AbpObjectExtensions.IsIn<T>(T, params T[])
AbpQueryableExtensions.OrderByIf<T, TQueryable>(TQueryable, bool, string)
AbpQueryableExtensions.PageBy<T, TQueryable>(TQueryable, int, int)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, bool>>)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, int, bool>>)
AbpOpenIddictQueryableExtensions.SkipIf<T, TQueryable>(TQueryable, bool, int?)
AbpOpenIddictQueryableExtensions.TakeIf<T, TQueryable>(TQueryable, bool, int?)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
In this article
Back to top Powered by ABP.IO Platform