On 3/23/06, Serge Bogatyrjov <[EMAIL PROTECTED]> wrote: > I have a form and some inputs on it. I marked one input as required. Then I > expected to get a error message when posting an empty form. By I did not get > any messages.
It should be as simple as adding
required="true"
as an attribute for your component. As you have noticed, this is the
only validation potentially checked for an empty input component.

