<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:p="http://primefaces.org/ui" xmlns:ui="http://xmlns.jcp.org/jsf/facelets"> <p:confirmDialog id="stationDestroyDialog" message="Delete experiment station #{experimentStationController.getCurrentEntityInstanceName()}?" header="Delete Experiment Station" severity="alert" widgetVar="stationDestroyDialogWidget" styleClass="dialog"> <p:commandButton value="Yes" oncomplete="stationDestroyDialogWidget.hide()" action="#{experimentStationController.destroy()}"/> <p:commandButton value="No" onclick="PF('stationDestroyDialogWidget').hide()" type="button" /> </p:confirmDialog> </ui:composition>