using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Bowin.Web.Controls.Mvc { public class TextBoxOptions : BaseFormControlOptions { public TextBoxOptions() { this.IsRequired = false; } public IDictionary HtmlAttributes { get; set; } /// /// 输入框类型 /// public TextBoxType TextBoxType { get; set; } //*************你妹的,写完才跟我说用Model验证****************// ///// ///// 非空约束?默认:否 ///// //public bool IsRequired { get; set; } ///// ///// 验证输入数据的规则: ///// email ///// url ///// 最小长度为10,最大长度为100 length[10,100] ///// 最小长度为10,不限制最大长度 length[10,0] ///// 不限制最小长度,最大长度为10 length[0,10] ///// -------------------------------------------------- ///// 自定义验证函数 囧 暂不支持,没空写这个功能... ///// //public string RequiredRule { get; set; } //**************************End*******************************// /// /// 输入框默认值 /// public object Value { get; set; } public string OnSelect { get; set; } public string OnChange { get; set; } public string OnClear { get; set; } } }