26 lines
884 B
HTML
26 lines
884 B
HTML
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:h="http://xmlns.jcp.org/jsf/html"
|
|
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
|
|
xmlns:p="http://primefaces.org/ui">
|
|
|
|
<!--
|
|
Composant colonne Actions réutilisable - DRY/WOU
|
|
Usage :
|
|
<ui:decorate template="/templates/components/columns/column-actions.xhtml">
|
|
<ui:param name="width" value="220px"/>
|
|
<ui:define name="actions">
|
|
Boutons d'action ici (view, edit, toggle, delete, etc.)
|
|
</ui:define>
|
|
</ui:decorate>
|
|
-->
|
|
|
|
<p:column headerText="Actions"
|
|
styleClass="text-center"
|
|
style="width: #{empty width ? '200px' : width};">
|
|
<ui:insert name="actions">
|
|
<!-- Action buttons go here -->
|
|
</ui:insert>
|
|
</p:column>
|
|
</ui:composition>
|
|
|