ItEr20S08CUProcuraPartesTraballoDadosAltaNoSistemaItEr19S13: Add more columns to WorkReport listing
This commit is contained in:
parent
3501d6da85
commit
14685fb1ad
1 changed files with 5 additions and 1 deletions
|
|
@ -1,14 +1,18 @@
|
|||
<window id="${arg.top_id}" title="Listado de partes de traballo">
|
||||
<grid id="listing" model="@{controller.workReports}" mold="paging"
|
||||
pageSize="5">
|
||||
<columns>
|
||||
<columns sizable="true">
|
||||
<column label="Data" sort="auto(date)" />
|
||||
<column label="Responsable" sort="auto(responsible)" />
|
||||
<column label="Lugar" sort="auto(place)" />
|
||||
<column label="Tipo" sort="auto(workReportType.name)"/>
|
||||
<column label="Accións" />
|
||||
</columns>
|
||||
<rows>
|
||||
<row self="@{each='workReport'}" value="@{workReport}">
|
||||
<label value="@{workReport.date, converter='org.navalplanner.web.common.typeconverters.DateConverter'}" />
|
||||
<label value="@{workReport.responsible}" />
|
||||
<label value="@{workReport.place}" />
|
||||
<label value="@{workReport.workReportType.name}" />
|
||||
<hbox>
|
||||
<button label="Editar" />
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue