I would like to validate my richfaces:datatable component against empty.
In other words I have <rich:dataTable value="#{bean.list}" ...> and list must have at least one element.
Is there some good sollution for this kind of validation.
Regards, A
|
I would like to validate my richfaces:datatable component against empty.
In other words I have Regards, A |
||||
|
|
|
You can't use a validator for this. It's for submitted request parameters only. If the sole purpose is to display some message when the list is empty, then just use the
Update: the table seems to be part of a form. Best what you could do is to add a
with a
which shows only messages with a |
|||||||
|