Package org.exoplatform.webui.core

Examples of org.exoplatform.webui.core.UIConfirmation$ClickActionListener


    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


    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

Related Classes of org.exoplatform.webui.core.UIConfirmation$ClickActionListener

Copyright © 2018 www.massapicom. 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.