Class DynamicFormsDemoModel.DetailedModel
Inheritance
DynamicFormsDemoModel.DetailedModel
Assembly: Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo.dll
public class DynamicFormsDemoModel.DetailedModel
Constructors
Declaration
Properties
Declaration
[Required]
[Display(Name = "Age")]
public int Age { get; set; }
Property Value
Declaration
[SelectItems("CountryList")]
[Display(Name = "Country")]
public string Country { get; set; }
Property Value
Declaration
[DataType(DataType.Date)]
[Display(Name = "Day")]
public DateTime Day { get; set; }
Property Value
Declaration
[TextArea(Rows = 4)]
[Display(Name = "Description")]
[InputInfoText("Describe Yourself")]
public string Description { get; set; }
Property Value
Declaration
[Display(Name = "Is Active")]
public bool IsActive { get; set; }
Property Value
Declaration
[Required]
[Display(Name = "My Car Type")]
public DynamicFormsDemoModel.CarType MyCarType { get; set; }
Property Value
Declaration
[Required]
[Placeholder("Enter your name...")]
[Display(Name = "Name")]
public string Name { get; set; }
Property Value
Declaration
[SelectItems("CountryList")]
[Display(Name = "Neighbor Countries")]
public List<string> NeighborCountries { get; set; }
Property Value
Declaration
[Required]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
Property Value
Declaration
[Required]
[AbpRadioButton(Inline = true)]
[Display(Name = "Your Car Type")]
public DynamicFormsDemoModel.CarType YourCarType { get; set; }
Property Value
Extension Methods