Example #1
0
 public WebTexBox(HtmlHelper helper, string name, object value, object htmlAttributes, CommonData.InputWebType inputType)
     : base(helper, name, value, htmlAttributes, inputType)
 {
 }
Example #2
0
 public WebBaseEdit(HtmlHelper helper, string name, object value, object htmlAttributes, CommonData.InputWebType inputType)
 {
     base.HtmlAttributes = htmlAttributes;
     this.Helper         = helper;
     this.Name           = name;
     this.Value          = value;
     this.InputType      = inputType;
     this.Width          = CommonData.Width.Medium;
 }
Example #3
0
 public WebBaseColumn SetInputType(CommonData.InputWebType inputType = CommonData.InputWebType.text)
 {
     this.InputType = inputType;
     return(this);
 }
Example #4
0
 public WebBaseEdit SetInputType(CommonData.InputWebType inputType)
 {
     this.InputType = inputType;
     return(this);
 }