Examples of UIConfirmation


Examples of org.exoplatform.webui.core.UIConfirmation

    public static class AbortCloseActionListener extends EventListener<UIEditInlineWorkspace> {

        @Override
        public void execute(Event<UIEditInlineWorkspace> event) throws Exception {
            UIEditInlineWorkspace uiEditInlineWorkspace = event.getSource();
            UIConfirmation uiConfirmation = uiEditInlineWorkspace.getChild(UIConfirmation.class);
            uiConfirmation.createEvent("Close", event.getExecutionPhase(), event.getRequestContext()).broadcast();
        }
View Full Code Here

Examples of org.exoplatform.webui.core.UIConfirmation

    private void showUIForm() {
        setRenderedChild(UISampleUIForm.class);
    }

    private void showUIConfirmation() {
        UIConfirmation uiConfirmation = getChild(UIConfirmation.class);
        uiConfirmation.setActions(makeActionConfirmList());
        uiConfirmation.setCaller(this);
        uiConfirmation.addMessage(MSG_CONFIRM);
        uiConfirmation.setShow(true);

        setRenderedChild(UIConfirmation.class);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.