t) Verify the most commonly uses attributes of this component.

i) Test Steps:

  1. add a button
  2. add textField1, set the text value to 'I am a textField'.
  3. add textField2, set the label to 'I am a textField label'.
  4. add textField3
  5. add a label and give it a name.
  6. set the label's for property to textField3
  7. mark textField3 required.
    label should get asterisk
  8. add a message component linked to textField3
  9. add a textField4
  10. add a staticText field
  11. add a processValueChange event with code: staticText1.setValue(textField4.getValue());
    should echo values at runtime
  12. add a textField5, set its label text to disabled, set its value to 'I am disabled', mark it required and add a message component linked to it.
    submit should occur error free even though disabled. text should appear, even if disable, user should not be able to change value.
  13. add textField6, set its label to max = 5. change its maxLength property to 5
    user should not be able to type in more than 5 characters.
  14. add in a label with text Not rendered
  15. add textField7 and set rendered=false (visible is more frequently used)
    should not render in designer, if view source it should not be in html.
  16. add te xtField8, set label to 'length validator, min=2, max=6. add a length validator to it and set the max/min. Add a message component linked to textField8
    values less than 2 and greater than 6 should give validation errors.
  17. add textField9, set laberl to converter, add integer converter, add message component linked to textField9

o) Expected Results:

  1. ..