Ayub Khan schrieb:
> Hi,
>  
> Could any give some tips in resolving the below issues ?
>  
> 1) Display empty rows of data table in JSF, if the list which is bounded
> to datable is empty then I need to view atleast one empty row.
>  
> 2) UI has one datable and a form below it, I need to show the empty
> table if there are no records and there should be little space (gap)
> between Table and the form below. Currently there is no space between
> table and form and their position is also not fixed. Like as I add rows
> to the table the form below it is getting pushed below. How to fix the
> position of these two and also have a space between them.

<h:panelGroup rendered="#{mybean.numRecords == 0}">
  here goes the stuff you want to render when there are no records
</h:panelGroup>

<h:dataTable rendered="#{mybean.numRecords > 0}">
  here goes the normal table
</h:dataTable>


Regards, Simon
-- 
-- Emails in "mixed" posting style will be ignored
-- (http://en.wikipedia.org/wiki/Posting_style)

Reply via email to