Inheritance: 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
ファイル: DateRangePicker.cs プロジェクト: timothybaloyi/Rock
 /// <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
ファイル: RockDropDownList.cs プロジェクト: NewSpring/Rock
 /// <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
ファイル: ItemPicker.cs プロジェクト: SparkDevNetwork/Rock
 /// <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
ファイル: RockListBox.cs プロジェクト: ewin66/rockrms
 /// <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
ファイル: ImageUploader.cs プロジェクト: NewSpring/Rock
 /// <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
ファイル: ImageUploader.cs プロジェクト: timothybaloyi/Rock
 /// <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
ファイル: PersonPicker.cs プロジェクト: ewin66/rockrms
        /// <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
ファイル: ButtonDropDownList.cs プロジェクト: NewSpring/Rock
 /// <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
ファイル: RockRadioButtonList.cs プロジェクト: NewSpring/Rock
 /// <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
ファイル: PersonPicker.cs プロジェクト: NewSpring/Rock
        /// <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
ファイル: GroupAndRolePicker.cs プロジェクト: sjison/Rock
 /// <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
ファイル: GeoPicker.cs プロジェクト: SparkDevNetwork/Rock
 /// <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
ファイル: RockRadioButtonList.cs プロジェクト: waldo2590/Rock
 /// <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
ファイル: GroupAndRolePicker.cs プロジェクト: NewSpring/Rock
 /// <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
ファイル: NumberUpDown.cs プロジェクト: NewSpring/Rock
 /// <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
ファイル: ButtonGroup.cs プロジェクト: garyholeman/Rock
 /// <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
ファイル: FileUploader.cs プロジェクト: waldo2590/Rock
 /// <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
ファイル: BirthdayPicker.cs プロジェクト: NewSpring/Rock
        /// <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
ファイル: FileUploader.cs プロジェクト: NewSpring/Rock
 /// <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
ファイル: AddressControl.cs プロジェクト: waldo2590/Rock
        /// <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
ファイル: RockCheckBoxList.cs プロジェクト: NewSpring/Rock
        /// <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
ファイル: RockCheckBoxList.cs プロジェクト: waldo2590/Rock
        /// <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
ファイル: ImageUploader.cs プロジェクト: waldo2590/Rock
 /// <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
ファイル: NumberUpDownGroup.cs プロジェクト: ewin66/rockrms
        /// <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
ファイル: HtmlEditor.cs プロジェクト: NewSpring/Rock
        /// <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
ファイル: MonthDayPicker.cs プロジェクト: NewSpring/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="MonthDayPicker"/> class.
 /// </summary>
 public MonthDayPicker()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
コード例 #45
0
ファイル: EntityPicker.cs プロジェクト: NewSpring/Rock
 /// <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
ファイル: GroupRolePicker.cs プロジェクト: NewSpring/Rock
 /// <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
ファイル: WorkflowPicker.cs プロジェクト: NewSpring/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="WorkflowPicker"/> class.
 /// </summary>
 public WorkflowPicker()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
コード例 #50
0
ファイル: ImageEditor.cs プロジェクト: NewSpring/Rock
 /// <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();
 }
コード例 #52
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ContentChannelItemPicker"/> class.
 /// </summary>
 public ContentChannelItemPicker()
     : base()
 {
     HelpBlock    = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
コード例 #53
0
ファイル: RockCheckBox.cs プロジェクト: NewSpring/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="RockCheckBox"/> class.
 /// </summary>
 public RockCheckBox()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
コード例 #54
0
ファイル: RockControlWrapper.cs プロジェクト: NewSpring/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="RockControlWrapper" /> class.
 /// </summary>
 public RockControlWrapper()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
コード例 #55
0
ファイル: CodeEditor.cs プロジェクト: NewSpring/Rock
 /// <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
ファイル: RockBulletedList.cs プロジェクト: NewSpring/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="RockBulletedList"/> class.
 /// </summary>
 public RockBulletedList()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
コード例 #57
0
ファイル: ScheduleBuilder.cs プロジェクト: NewSpring/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="ScheduleBuilder"/> class.
 /// </summary>
 public ScheduleBuilder()
 {
     RequiredFieldValidator = null;
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }
コード例 #58
0
ファイル: NumberRangeEditor.cs プロジェクト: NewSpring/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="NumberRangeEditor"/> class.
 /// </summary>
 public NumberRangeEditor()
     : base()
 {
     HelpBlock = new HelpBlock();
     WarningBlock = new WarningBlock();
 }