Skip to content
Snippets Groups Projects
experimentUserRemoveDialog.xhtml 858 B
Newer Older
Barbara B. Frosik's avatar
Barbara B. Frosik committed
<?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">

Barbara B. Frosik's avatar
Barbara B. Frosik committed
    <p:confirmDialog id="experimentUserRemoveDialog" message="Remove user  from Experiment?"
Barbara B. Frosik's avatar
Barbara B. Frosik committed
                     header="Remove User" severity="alert" widgetVar="experimentUserRemoveDialogWidget"
                     styleClass="dialog">
Barbara B. Frosik's avatar
Barbara B. Frosik committed
        <p:commandButton value="Yes" oncomplete="experimentUserRemoveDialogWidget.hide()" action="#{experimentController.removeUser()}"/>
Barbara B. Frosik's avatar
Barbara B. Frosik committed
        <p:commandButton value="No" onclick="PF('experimentUserRemoveDialogWidget').hide()" type="button" />
    </p:confirmDialog>  
</ui:composition>