init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
40
KretaWeb/Areas/Nyomtatvanyok/Models/NyomtatvanyItemModel.cs
Normal file
40
KretaWeb/Areas/Nyomtatvanyok/Models/NyomtatvanyItemModel.cs
Normal file
|
@ -0,0 +1,40 @@
|
|||
using Kreta.Web.Models;
|
||||
|
||||
namespace Kreta.Web.Areas.Nyomtatvanyok.Models
|
||||
{
|
||||
public class NyomtatvanyItemModel : LayoutModel
|
||||
{
|
||||
public NyomtatvanyItemModel()
|
||||
{
|
||||
}
|
||||
|
||||
public string Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Type { get; set; }
|
||||
public string Label { get; set; }
|
||||
public bool Required { get; set; }
|
||||
public bool Disabled { get; set; }
|
||||
public string DropdownItemsUrl { get; set; }
|
||||
public bool? DropdownItemsUseGroup { get; set; }
|
||||
public string DropdownItemsGroupName { get; set; }
|
||||
public bool SelectFirstItem { get; set; }
|
||||
|
||||
/*Cascade From extra data*/
|
||||
public string CascadeFrom { get; set; }
|
||||
public string CascadeFromController { get; set; }
|
||||
public string CascadeFromAction { get; set; }
|
||||
public int? DefaultValue { get; set; }
|
||||
public string OnChangeFunction { get; set; }
|
||||
public string OnCloseFunction { get; set; }
|
||||
|
||||
/*Radiobutton*/
|
||||
public string Value { get; set; }
|
||||
public bool Checked { get; set; }
|
||||
|
||||
public string GroupName { get; set; }
|
||||
public string GroupId { get; set; }
|
||||
|
||||
/* Textbox */
|
||||
public int? MaxLength { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue