how to display a details of vector in datatable

how to display a details of vector in datatable
[54 byte] By [maheswaria] at [2007-10-2 17:51:04]
# 1
Iterate and display....:)regardsShanu
mshanua at 2007-7-13 19:09:22 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
http://www.google.pt/search?hl=pt-PT&q=datatable+jsf+example&btnG=Pesquisar&meta=
pringia at 2007-7-13 19:09:22 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3

let suppose u have a controller .. TaskmanagementController ... and there is a vector (taskWrapperList)... which hava all the name of that task .....

<h:dataTable id="taskTable" value="#{TaskManagementController.taskWrapperList}" var="task" rows="5" width="344">

<h:column id="is_complete_column">

<f:facet name="header">

<h:outputText value="Name"/>

</f:facet>

<h:outputText id="task_name" value="#{task.taskName}"/>

</h:column>

</h:dataTable>

adeema at 2007-7-13 19:09:22 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...