상속: System.Web.UI.WebControls.Literal
예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RockTextBox" /> class.
 /// </summary>
 public CodeEditor()
     : base()
 {
     RequiredFieldValidator = new RequiredFieldValidator();
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #2
0
파일: SSNBox.cs 프로젝트: kra3889/rockrms
 /// <summary>
 /// Initializes a new instance of the <see cref="BirthdayPicker"/> class.
 /// </summary>
 public SSNBox()
     : base()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DateRangePicker"/> class.
 /// </summary>
 public DateRangePicker()
     : base()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RockDropDownList" /> class.
 /// </summary>
 public RockDropDownList()
 {
     RequiredFieldValidator = new RequiredFieldValidator();
     RequiredFieldValidator.ValidationGroup = this.ValidationGroup;
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DateRangePicker"/> class.
 /// </summary>
 public DateRangePicker()
     : base()
 {
     CustomValidator = new CustomValidator();
     HelpBlock       = new HelpBlock();
     WarningBlock    = new WarningBlock();
 }
예제 #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ItemPicker" /> class.
 /// </summary>
 public ItemPicker()
     : base()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RockListBox" /> class.
 /// </summary>
 public RockListBox()
 {
     RequiredFieldValidator = new RequiredFieldValidator();
     RequiredFieldValidator.ValidationGroup = this.ValidationGroup;
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #8
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ItemFromBlockPicker" /> class.
 /// </summary>
 public ItemFromBlockPicker()
     : base()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #9
0
        /// <summary>
        /// Initializes a new instance of the <see cref="NumberUpDownGroup"/> class.
        /// </summary>
        public NumberUpDownGroup() : base()
        {
            GroupCustomValidator = new CustomValidator();

            HelpBlock    = new HelpBlock();
            WarningBlock = new WarningBlock();
        }
예제 #10
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SlidingDateRangePicker"/> class.
 /// </summary>
 public SlidingDateRangePicker()
     : base()
 {
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
     Label        = "Date Range";
 }
예제 #11
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SlidingDateRangePicker"/> class.
 /// </summary>
 public SlidingDateRangePicker()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
     Label = "Date Range";
 }
예제 #12
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NumberUpDown"/> class.
 /// </summary>
 public NumberUpDown() : base()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     RequiredFieldValidator.ValidationGroup = this.ValidationGroup;
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #13
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ImageUploader"/> class.
 /// </summary>
 public ImageUploader()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
     _hfBinaryFileId = new HiddenField();
     _hfBinaryFileTypeGuid = new HiddenField();
 }
예제 #14
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ImageUploader"/> class.
 /// </summary>
 public ImageUploader()
     : base()
 {
     HelpBlock             = new HelpBlock();
     WarningBlock          = new WarningBlock();
     _hfBinaryFileId       = new HiddenField();
     _hfBinaryFileTypeGuid = new HiddenField();
 }
예제 #15
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GeoPicker" /> class.
 /// </summary>
 public GeoPicker()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     HelpBlock      = new HelpBlock();
     WarningBlock   = new WarningBlock();
     _btnSelect     = new HtmlAnchor();
     _btnSelectNone = new HtmlAnchor();
 }
예제 #16
0
        /// <summary>
        /// Initializes a new instance of the <see cref="PersonPicker" /> class.
        /// </summary>
        public PersonPicker()
        {
            // note we are using HiddenFieldValidator instead of RequiredFieldValidator
            RequiredFieldValidator = new HiddenFieldValidator();

            HelpBlock    = new HelpBlock();
            WarningBlock = new WarningBlock();
        }
예제 #17
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ButtonDropDownList"/> class.
 /// </summary>
 public ButtonDropDownList()
     : base()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     RequiredFieldValidator.ValidationGroup = this.ValidationGroup;
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #18
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RockRadioButtonList"/> class.
 /// </summary>
 public RockRadioButtonList()
     : base()
 {
     RequiredFieldValidator = new RequiredFieldValidator();
     RequiredFieldValidator.ValidationGroup = this.ValidationGroup;
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #19
0
        /// <summary>
        /// Initializes a new instance of the <see cref="PersonPicker" /> class.
        /// </summary>
        public PersonPicker()
        {
            // note we are using HiddenFieldValidator instead of RequiredFieldValidator
            RequiredFieldValidator = new HiddenFieldValidator();

            HelpBlock = new HelpBlock();
            WarningBlock = new WarningBlock();
        }
예제 #20
0
파일: SSNBox.cs 프로젝트: waldo2590/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="SSNBox"/> class.
 /// </summary>
 public SSNBox()
     : base()
 {
     this.RegularExpressionValidator = new RegularExpressionValidator();
     RequiredFieldValidator          = new HiddenFieldValidator();
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #21
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ButtonDropDownList"/> class.
 /// </summary>
 public ButtonDropDownList()
     : base()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     RequiredFieldValidator.ValidationGroup = this.ValidationGroup;
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #22
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GroupTypeGroupPicker"/> class.
 /// </summary>
 public GroupAndRolePicker()
     : base()
 {
     HelpBlock              = new HelpBlock();
     WarningBlock           = new WarningBlock();
     RequiredFieldValidator = new RequiredFieldValidator();
     RequiredFieldValidator.ValidationGroup = this.ValidationGroup;
 }
예제 #23
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GeoPicker" /> class.
 /// </summary>
 public GeoPicker()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
     _btnSelect = new HtmlAnchor();
     _btnSelectNone = new HtmlAnchor();
 }
예제 #24
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RockRadioButtonList"/> class.
 /// </summary>
 public RockRadioButtonList()
     : base()
 {
     RequiredFieldValidator = new RequiredFieldValidator();
     RequiredFieldValidator.ValidationGroup = this.ValidationGroup;
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #25
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GroupTypeGroupPicker"/> class.
 /// </summary>
 public GroupAndRolePicker()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
     RequiredFieldValidator = new RequiredFieldValidator();
     RequiredFieldValidator.ValidationGroup = this.ValidationGroup;
 }
예제 #26
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NumberUpDown"/> class.
 /// </summary>
 public NumberUpDown()
     : base()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     RequiredFieldValidator.ValidationGroup = this.ValidationGroup;
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #27
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RockRadioButtonList"/> class.
 /// </summary>
 public ButtonGroup()
     : base()
 {
     RequiredFieldValidator = new RequiredFieldValidator();
     RequiredFieldValidator.ValidationGroup = this.ValidationGroup;
     HelpBlock       = new HelpBlock();
     WarningBlock    = new WarningBlock();
     RepeatDirection = RepeatDirection.Horizontal;
 }
예제 #28
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FileUploader" /> class.
 /// </summary>
 public FileUploader()
     : base()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     HelpBlock             = new HelpBlock();
     WarningBlock          = new WarningBlock();
     _hfBinaryFileId       = new HiddenField();
     _hfBinaryFileTypeGuid = new HiddenField();
 }
예제 #29
0
        /// <summary>
        /// Initializes a new instance of the <see cref="BirthdayPicker"/> class.
        /// </summary>
        public BirthdayPicker()
            : base()
        {
            CustomValidator = new CustomValidator();
            CustomValidator.ValidationGroup = this.ValidationGroup;

            HelpBlock = new HelpBlock();
            WarningBlock = new WarningBlock();
        }
예제 #30
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FileUploader" /> class.
 /// </summary>
 public FileUploader()
     : base()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
     _hfBinaryFileId = new HiddenField();
     _hfBinaryFileTypeGuid = new HiddenField();
 }
예제 #31
0
        /// <summary>
        /// Initializes a new instance of the <see cref="AddressControl"/> class.
        /// </summary>
        public AddressControl()
            : base()
        {
            CustomValidator = new CustomValidator();
            CustomValidator.ValidationGroup = this.ValidationGroup;

            HelpBlock    = new HelpBlock();
            WarningBlock = new WarningBlock();
        }
예제 #32
0
        /// <summary>
        /// Initializes a new instance of the <see cref="RockCheckBoxList"/> class.
        /// </summary>
        public RockCheckBoxList()
            : base()
        {
            CustomValidator = new CustomValidator();
            CustomValidator.ValidationGroup = this.ValidationGroup;

            HelpBlock = new HelpBlock();
            WarningBlock = new WarningBlock();
        }
예제 #33
0
        /// <summary>
        /// Initializes a new instance of the <see cref="DatePartsPicker"/> class.
        /// </summary>
        public DatePartsPicker()
            : base()
        {
            CustomValidator = new CustomValidator();
            CustomValidator.ValidationGroup = this.ValidationGroup;

            HelpBlock    = new HelpBlock();
            WarningBlock = new WarningBlock();
        }
예제 #34
0
        /// <summary>
        /// Initializes a new instance of the <see cref="RockCheckBoxList"/> class.
        /// </summary>
        public RockCheckBoxList()
            : base()
        {
            CustomValidator = new CustomValidator();
            CustomValidator.ValidationGroup = this.ValidationGroup;

            HelpBlock    = new HelpBlock();
            WarningBlock = new WarningBlock();
        }
예제 #35
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ImageUploader"/> class.
 /// </summary>
 public ImageUploader()
     : base()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     HelpBlock             = new HelpBlock();
     WarningBlock          = new WarningBlock();
     _hfBinaryFileId       = new HiddenField();
     _hfBinaryFileTypeGuid = new HiddenField();
     _hfContentFileSource  = new HiddenFieldWithClass();
 }
예제 #36
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GroupTypeGroupPicker"/> class.
 /// </summary>
 public GroupTypeGroupPicker()
     : base()
 {
     HelpBlock              = new HelpBlock();
     WarningBlock           = new WarningBlock();
     RequiredFieldValidator = new RequiredFieldValidator
     {
         ValidationGroup = this.ValidationGroup
     };
 }
예제 #37
0
        /// <summary>
        /// Initializes a new instance of the <see cref="NumberUpDownGroup"/> class.
        /// </summary>
        public NumberUpDownGroup() : base()
        {
            GroupCustomValidator = new CustomValidator
            {
                ValidationGroup = this.ValidationGroup
            };

            // ControlGroup = new List<NumberUpDown>();
            HelpBlock    = new HelpBlock();
            WarningBlock = new WarningBlock();
        }
예제 #38
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ImageEditor"/> class.
 /// </summary>
 public ImageEditor()
     : base()
 {
     RequiredFieldValidator = new HiddenFieldValidator();
     HelpBlock               = new HelpBlock();
     WarningBlock            = new WarningBlock();
     _hfBinaryFileId         = new HiddenField();
     _hfBinaryFileTypeGuid   = new HiddenField();
     _hfOriginalBinaryFileId = new HiddenField();
     _hfCropBinaryFileId     = new HiddenField();
 }
예제 #39
0
        /// <summary>
        /// Initializes a new instance of the <see cref="HtmlEditor"/> class.
        /// </summary>
        public HtmlEditor()
            : base()
        {
            RequiredFieldValidator = new RequiredFieldValidator();
            RequiredFieldValidator.ValidationGroup = this.ValidationGroup;
            HelpBlock    = new HelpBlock();
            WarningBlock = new WarningBlock();

            TextMode = TextBoxMode.MultiLine;
            Rows     = 10;
            Columns  = 80;
        }
예제 #40
0
        /// <summary>
        /// Initializes a new instance of the <see cref="AddressControl"/> class.
        /// </summary>
        public AddressControl()
            : base()
        {
            HelpBlock    = new HelpBlock();
            WarningBlock = new WarningBlock();

            // Prevent ViewState from being disabled by the container, because it is necessary for this control to operate correctly.
            this.ViewStateMode = ViewStateMode.Enabled;

            // Default validation display mode to use the ValidationSummary control rather than inline.
            this.ValidationDisplay = ValidatorDisplay.None;
        }
예제 #41
0
        /// <summary>
        /// Initializes a new instance of the <see cref="HtmlEditor"/> class.
        /// </summary>
        public HtmlEditor()
            : base()
        {
            RequiredFieldValidator = new RequiredFieldValidator();
            RequiredFieldValidator.ValidationGroup = this.ValidationGroup;
            HelpBlock = new HelpBlock();
            WarningBlock = new WarningBlock();

            TextMode = TextBoxMode.MultiLine;
            Rows = 10;
            Columns = 80;
        }
예제 #42
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BirthdayPicker"/> class.
 /// </summary>
 public BirthdayPicker()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #43
0
 /// <summary>
 /// Initializes a new instance of the <see cref="StepProgramStepTypePicker"/> class.
 /// </summary>
 public StepProgramStepTypePicker()
     : base()
 {
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #44
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MonthDayPicker"/> class.
 /// </summary>
 public MonthDayPicker()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #45
0
 /// <summary>
 /// Initializes a new instance of the <see cref="EntityPicker"/> class.
 /// </summary>
 public EntityPicker()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #46
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GroupTypeGroupPicker"/> class.
 /// </summary>
 public GroupTypeGroupPicker()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #47
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GroupRolePicker"/> class.
 /// </summary>
 public GroupRolePicker()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #48
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WorkflowPicker"/> class.
 /// </summary>
 public WorkflowPicker()
     : base()
 {
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #49
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WorkflowPicker"/> class.
 /// </summary>
 public WorkflowPicker()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #50
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ImageEditor"/> class.
 /// </summary>
 public ImageEditor()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #51
0
파일: Toggle.cs 프로젝트: NewSpring/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="Toggle"/> class.
 /// </summary>
 public Toggle()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ContentChannelItemPicker"/> class.
 /// </summary>
 public ContentChannelItemPicker()
     : base()
 {
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #53
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RockCheckBox"/> class.
 /// </summary>
 public RockCheckBox()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #54
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RockControlWrapper" /> class.
 /// </summary>
 public RockControlWrapper()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #55
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RockTextBox" /> class.
 /// </summary>
 public CodeEditor()
     : base()
 {
     RequiredFieldValidator = new RequiredFieldValidator();
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #56
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RockBulletedList"/> class.
 /// </summary>
 public RockBulletedList()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #57
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ScheduleBuilder"/> class.
 /// </summary>
 public ScheduleBuilder()
 {
     RequiredFieldValidator = null;
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
예제 #58
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NumberRangeEditor"/> class.
 /// </summary>
 public NumberRangeEditor()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }