t) Verify the most commonly uses attributes of this component.
i) Test Steps:
- add a button
- add textField1, set the text value to 'I am a textField'.
- add textField2, set the label to 'I am a textField label'.
- add textField3
- add a label and give it a name.
- set the label's for property to textField3
- mark textField3 required.
label should get asterisk
- add a message component linked to textField3
- add a textField4
- add a staticText field
- add a processValueChange event with code: staticText1.setValue(textField4.getValue());
should echo values at runtime
- 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.
- 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.
- add in a label with text Not rendered
- 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.
- 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.
- add textField9, set laberl to converter, add integer converter, add message
component linked to textField9
o) Expected Results:
- ..