Search in sources :

Example 1 with WSingleSelect

use of com.github.bordertech.wcomponents.WSingleSelect in project wcomponents by BorderTech.

the class SubordinateControlOptionsExample method setupTrigger.

/**
 * Setup the trigger for the subordinate control.
 */
private void setupTrigger() {
    String label = drpTriggerType.getSelected() + " Trigger";
    WFieldLayout layout = new WFieldLayout();
    layout.setLabelWidth(LABEL_WIDTH);
    buildControlPanel.add(layout);
    switch((TriggerType) drpTriggerType.getSelected()) {
        case RadioButtonGroup:
            trigger = new RadioButtonGroup();
            WFieldSet rbSet = new WFieldSet("Select an option");
            RadioButtonGroup group = (RadioButtonGroup) trigger;
            WRadioButton rb1 = group.addRadioButton("A");
            WRadioButton rb2 = group.addRadioButton("B");
            WRadioButton rb3 = group.addRadioButton("C");
            rbSet.add(group);
            rbSet.add(rb1);
            rbSet.add(new WLabel("A", rb1));
            rbSet.add(new WText("\u00a0"));
            rbSet.add(rb2);
            rbSet.add(new WLabel("B", rb2));
            rbSet.add(new WText("\u00a0"));
            rbSet.add(rb3);
            rbSet.add(new WLabel("C", rb3));
            layout.addField(label, rbSet);
            return;
        case CheckBox:
            trigger = new WCheckBox();
            break;
        case CheckBoxSelect:
            trigger = new WCheckBoxSelect(LOOKUP_TABLE_NAME);
            break;
        case DateField:
            trigger = new WDateField();
            break;
        case Dropdown:
            trigger = new WDropdown(new TableWithNullOption(LOOKUP_TABLE_NAME));
            break;
        case EmailField:
            trigger = new WEmailField();
            break;
        case MultiSelect:
            trigger = new WMultiSelect(LOOKUP_TABLE_NAME);
            break;
        case MultiSelectPair:
            trigger = new WMultiSelectPair(LOOKUP_TABLE_NAME);
            break;
        case NumberField:
            trigger = new WNumberField();
            break;
        case PartialDateField:
            trigger = new WPartialDateField();
            break;
        case PasswordField:
            trigger = new WPasswordField();
            break;
        case PhoneNumberField:
            trigger = new WPhoneNumberField();
            break;
        case RadioButtonSelect:
            trigger = new WRadioButtonSelect(LOOKUP_TABLE_NAME);
            break;
        case SingleSelect:
            trigger = new WSingleSelect(LOOKUP_TABLE_NAME);
            break;
        case TextArea:
            trigger = new WTextArea();
            ((WTextArea) trigger).setMaxLength(1000);
            break;
        case TextField:
            trigger = new WTextField();
            break;
        default:
            throw new SystemException("Trigger type not valid");
    }
    layout.addField(label, trigger);
}
Also used : WFieldSet(com.github.bordertech.wcomponents.WFieldSet) WNumberField(com.github.bordertech.wcomponents.WNumberField) WEmailField(com.github.bordertech.wcomponents.WEmailField) WPasswordField(com.github.bordertech.wcomponents.WPasswordField) WMultiSelect(com.github.bordertech.wcomponents.WMultiSelect) WLabel(com.github.bordertech.wcomponents.WLabel) WTextArea(com.github.bordertech.wcomponents.WTextArea) WRadioButton(com.github.bordertech.wcomponents.WRadioButton) WDropdown(com.github.bordertech.wcomponents.WDropdown) SystemException(com.github.bordertech.wcomponents.util.SystemException) WText(com.github.bordertech.wcomponents.WText) WFieldLayout(com.github.bordertech.wcomponents.WFieldLayout) TableWithNullOption(com.github.bordertech.wcomponents.examples.common.ExampleLookupTable.TableWithNullOption) WRadioButtonSelect(com.github.bordertech.wcomponents.WRadioButtonSelect) WTextField(com.github.bordertech.wcomponents.WTextField) WCheckBoxSelect(com.github.bordertech.wcomponents.WCheckBoxSelect) WMultiSelectPair(com.github.bordertech.wcomponents.WMultiSelectPair) WPhoneNumberField(com.github.bordertech.wcomponents.WPhoneNumberField) WSingleSelect(com.github.bordertech.wcomponents.WSingleSelect) RadioButtonGroup(com.github.bordertech.wcomponents.RadioButtonGroup) WCheckBox(com.github.bordertech.wcomponents.WCheckBox) WPartialDateField(com.github.bordertech.wcomponents.WPartialDateField) WDateField(com.github.bordertech.wcomponents.WDateField)

Example 2 with WSingleSelect

use of com.github.bordertech.wcomponents.WSingleSelect in project wcomponents by BorderTech.

the class WSingleSelectRenderer_Test method testXssEscaping.

@Test
public void testXssEscaping() throws IOException, SAXException, XpathException {
    OptionGroup optionGroup = new OptionGroup(getMaliciousAttribute("ui:optgroup"), Arrays.asList(new String[] { "dummy" }));
    WSingleSelect single = new WSingleSelect(Arrays.asList(new Object[] { getInvalidCharSequence(), getMaliciousContent(), optionGroup }));
    assertSafeContent(single);
    single.setToolTip(getMaliciousAttribute("ui:listbox"));
    assertSafeContent(single);
    single.setAccessibleText(getMaliciousAttribute("ui:listbox"));
    assertSafeContent(single);
}
Also used : OptionGroup(com.github.bordertech.wcomponents.OptionGroup) WSingleSelect(com.github.bordertech.wcomponents.WSingleSelect) Test(org.junit.Test)

Example 3 with WSingleSelect

use of com.github.bordertech.wcomponents.WSingleSelect in project wcomponents by BorderTech.

the class WSingleSelectRenderer_Test method testRendererCorrectlyConfigured.

@Test
public void testRendererCorrectlyConfigured() {
    WSingleSelect single = new WSingleSelect(new String[] { "a", "b", "c" });
    Assert.assertTrue("Incorrect renderer supplied", getWebXmlRenderer(single) instanceof WSingleSelectRenderer);
}
Also used : WSingleSelect(com.github.bordertech.wcomponents.WSingleSelect) Test(org.junit.Test)

Example 4 with WSingleSelect

use of com.github.bordertech.wcomponents.WSingleSelect in project wcomponents by BorderTech.

the class WSingleSelectRenderer_Test method testReadOnly.

@Test
public void testReadOnly() throws IOException, SAXException, XpathException {
    WSingleSelect single = new WSingleSelect(new String[] { "a", "b", "c" });
    single.setSelected("b");
    single.setReadOnly(true);
    assertSchemaMatch(single);
    assertXpathEvaluatesTo("true", "//ui:listbox/@readOnly", single);
    assertXpathEvaluatesTo("1", "count(//ui:listbox/ui:option)", single);
    assertXpathEvaluatesTo("b", "normalize-space(//ui:listbox/ui:option[@selected='true'])", single);
}
Also used : WSingleSelect(com.github.bordertech.wcomponents.WSingleSelect) Test(org.junit.Test)

Example 5 with WSingleSelect

use of com.github.bordertech.wcomponents.WSingleSelect in project wcomponents by BorderTech.

the class WSingleSelectRenderer_Test method testDoPaint.

@Test
public void testDoPaint() throws IOException, SAXException, XpathException {
    WSingleSelect single = new WSingleSelect(new String[] { "a", "b", "c" });
    assertSchemaMatch(single);
    assertXpathEvaluatesTo(single.getId(), "//ui:listbox/@id", single);
    assertXpathEvaluatesTo("3", "count(//ui:listbox/ui:option)", single);
    assertXpathNotExists("//ui:listbox/@rows", single);
    assertXpathEvaluatesTo("true", "//ui:listbox/@single", single);
    // Check selected
    assertXpathNotExists("//ui:listbox/ui:option[@selected='true']", single);
    single.setSelected("b");
    assertSchemaMatch(single);
    assertXpathEvaluatesTo("3", "count(//ui:listbox/ui:option)", single);
    assertXpathEvaluatesTo("b", "normalize-space(//ui:listbox/ui:option[@selected='true'])", single);
    // Check rows
    single.setRows(123);
    assertSchemaMatch(single);
    assertXpathEvaluatesTo("123", "//ui:listbox/@rows", single);
}
Also used : WSingleSelect(com.github.bordertech.wcomponents.WSingleSelect) Test(org.junit.Test)

Aggregations

WSingleSelect (com.github.bordertech.wcomponents.WSingleSelect)10 Test (org.junit.Test)8 OptionGroup (com.github.bordertech.wcomponents.OptionGroup)3 RadioButtonGroup (com.github.bordertech.wcomponents.RadioButtonGroup)1 WCheckBox (com.github.bordertech.wcomponents.WCheckBox)1 WCheckBoxSelect (com.github.bordertech.wcomponents.WCheckBoxSelect)1 WDateField (com.github.bordertech.wcomponents.WDateField)1 WDropdown (com.github.bordertech.wcomponents.WDropdown)1 WEmailField (com.github.bordertech.wcomponents.WEmailField)1 WFieldLayout (com.github.bordertech.wcomponents.WFieldLayout)1 WFieldSet (com.github.bordertech.wcomponents.WFieldSet)1 WLabel (com.github.bordertech.wcomponents.WLabel)1 WMultiSelect (com.github.bordertech.wcomponents.WMultiSelect)1 WMultiSelectPair (com.github.bordertech.wcomponents.WMultiSelectPair)1 WNumberField (com.github.bordertech.wcomponents.WNumberField)1 WPartialDateField (com.github.bordertech.wcomponents.WPartialDateField)1 WPasswordField (com.github.bordertech.wcomponents.WPasswordField)1 WPhoneNumberField (com.github.bordertech.wcomponents.WPhoneNumberField)1 WRadioButton (com.github.bordertech.wcomponents.WRadioButton)1 WRadioButtonSelect (com.github.bordertech.wcomponents.WRadioButtonSelect)1