Esempio n. 1
0
        public SingleSelectControl(SingleSelect question)
        {
            RepeatDirection direction = question.Vertical ? RepeatDirection.Vertical : RepeatDirection.Horizontal;

            switch (question.SelectionType)
            {
            case Items.SingleSelectType.DropDown:
                lc = new DropDownList();
                break;

            case Items.SingleSelectType.ListBox:
                var lb = new ListBox();
                lb.SelectionMode = ListSelectionMode.Single;
                lc = lb;
                break;

            case Items.SingleSelectType.RadioButtons:
                var rbl = new RadioButtonList();
                rbl.RepeatLayout    = RepeatLayout.Flow;
                rbl.RepeatDirection = direction;
                lc = rbl;
                break;
            }

            lc.CssClass = "alternatives";
            if (question.ID > 0)
            {
                lc.ID = "q" + question.ID;
            }
            lc.DataTextField  = "Title";
            lc.DataValueField = "ID";
            lc.DataSource     = question.Children.WhereAccessible();
            lc.DataBind();

            l          = new Label();
            l.CssClass = "label";
            l.Text     = question.Title;
            if (question.ID > 0)
            {
                l.AssociatedControlID = lc.ID;
            }

            Controls.Add(l);
            Controls.Add(lc);

            if (question.Required)
            {
                cv = new CustomValidator {
                    Display = ValidatorDisplay.Dynamic, Text = "*"
                };
                cv.ErrorMessage    = question.Title + " is required";
                cv.ServerValidate += (s, a) => a.IsValid = !string.IsNullOrEmpty(AnswerText);
                cv.ValidationGroup = "Form";
                Controls.Add(cv);
            }
        }
        public SingleSelectControl(SingleSelect question)
        {
            RepeatDirection direction = question.Vertical ? RepeatDirection.Vertical : RepeatDirection.Horizontal;

            switch (question.SelectionType)
            {
                case Items.SingleSelectType.DropDown:
                    lc = new DropDownList();
                    break;
                case Items.SingleSelectType.ListBox:
                    var lb = new ListBox();
                    lb.SelectionMode = ListSelectionMode.Single;
                    lc = lb;
                    break;
                case Items.SingleSelectType.RadioButtons:
                    var rbl = new RadioButtonList();
                    rbl.RepeatLayout = RepeatLayout.Flow;
                    rbl.RepeatDirection = direction;
                    lc = rbl;
                    break;
            }

            lc.CssClass = "alternatives";
            if (question.ID > 0)
                lc.ID = "q" + question.ID;
            lc.DataTextField = "Title";
            lc.DataValueField = "ID";
			lc.DataSource = question.Children.WhereAccessible();
            lc.DataBind();

            l = new Label();
            l.CssClass = "label";
            l.Text = question.Title;
            if (question.ID > 0)
                l.AssociatedControlID = lc.ID;

            Controls.Add(l);
            Controls.Add(lc);

            if (question.Required)
            {
                cv = new CustomValidator { Display = ValidatorDisplay.Dynamic, Text = "*" };
                cv.ErrorMessage = question.Title + " is required";
                cv.ServerValidate += (s, a) => a.IsValid = !string.IsNullOrEmpty(AnswerText);
                cv.ValidationGroup = "Form";
                Controls.Add(cv);
            }
        }
Esempio n. 3
0
        public SingleSelectControl(SingleSelect question, RepeatDirection direction)
        {
            rbl                 = new RadioButtonList();
            rbl.CssClass        = "alternatives";
            rbl.ID              = "q" + question.ID;
            rbl.DataTextField   = "Title";
            rbl.DataValueField  = "ID";
            rbl.DataSource      = question.GetChildren();
            rbl.RepeatLayout    = RepeatLayout.Flow;
            rbl.RepeatDirection = direction;
            rbl.DataBind();

            l                     = new Label();
            l.CssClass            = "label";
            l.Text                = question.Title;
            l.AssociatedControlID = rbl.ID;

            Controls.Add(l);
            Controls.Add(rbl);
        }
Esempio n. 4
0
        public SingleSelectControl(SingleSelect question, RepeatDirection direction)
        {
            rbl = new RadioButtonList();
            rbl.CssClass = "alternatives";
            rbl.ID = "q" + question.ID;
            rbl.DataTextField = "Title";
            rbl.DataValueField = "ID";
            rbl.DataSource = question.GetChildren();
            rbl.RepeatLayout = RepeatLayout.Flow;
            rbl.RepeatDirection = direction;
            rbl.DataBind();

            l = new Label();
            l.CssClass = "label";
            l.Text = question.Title;
            l.AssociatedControlID = rbl.ID;

            Controls.Add(l);
            Controls.Add(rbl);
        }