Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The "required" attribute on many WebWork UI tags defaults to true only if you have client side validation enabled and there is a validator associated with that particular field.

Form Tag Reference

Note

It's very important to note that all tags that insert something into the valuestack (like i18n or bean tags) will remove those objects from the stack on its end tag. This means that if you instantiate a bean with the bean tag (<ww:bean name="'br.univap.fcc.sgpw.util.FormattersHelper'">) that bean will be avaliable on the valuestack only until the </ww:bean> tag.

  1. checkbox - renders a checkbox input field
  2. checkboxlist - renders a list of checkboxes
  3. combobox - renders a widget that fills a text box from a select
  4. datepicker - renders
  5. doubleselect - renders
  6. file - renders
  7. form - renders an input form
  8. hidden - renders a hidden form field
  9. label - renders renders a label
  10. password - renders a password textfield
  11. radio - renders a radio button
  12. select - renders a select
  13. submit - renders a submit button
  14. textarea - renders a textarea
  15. textfield - renders a textfield
  16. token - renders a hidden field to stop double-submission of containing forms

...