Examples of JGrowlBehaviour


Examples of org.apache.isis.viewer.wicket.ui.errors.JGrowlBehaviour

                        target.appendJavaScript("Wicket.Window.get().autoSizeWindow();");
                    }
                    target.add(form);
                }
            };
            okButton.add(new JGrowlBehaviour());
            add(okButton);
           
            AjaxButton cancelButton = new AjaxButton(ID_CANCEL_BUTTON) {
                private static final long serialVersionUID = 1L;
View Full Code Here

Examples of org.apache.isis.viewer.wicket.ui.errors.JGrowlBehaviour

        PanelUtil.renderHead(response, PageAbstract.class);

        response.render(JavaScriptReferenceHeaderItem.forReference(JQUERY_LIVEQUERY_JS));
        response.render(JavaScriptReferenceHeaderItem.forReference(JQUERY_ISIS_WICKET_VIEWER_JS));

        JGrowlBehaviour jGrowlBehaviour = new JGrowlBehaviour();
        jGrowlBehaviour.renderFeedbackMessages(response);

        if(applicationCss != null) {
            response.render(CssReferenceHeaderItem.forUrl(applicationCss));
        }
        if(applicationJs != null) {
View Full Code Here

Examples of org.apache.isis.viewer.wicket.ui.errors.JGrowlBehaviour

                protected void onError(AjaxRequestTarget target, Form<?> form) {
                    super.onError(target, form);
                    target.add(form);
                }
            };
            okButton.add(new JGrowlBehaviour());
            add(okButton);
           
            AjaxButton cancelButton = new AjaxButton(ID_CANCEL_BUTTON, new ResourceModel("cancelLabel")) {
                private static final long serialVersionUID = 1L;
View Full Code Here

Examples of org.apache.isis.viewer.wicket.ui.errors.JGrowlBehaviour

                    }
                }));
            }

        };
        link.add(new JGrowlBehaviour());
        final boolean explorationOrPrototype = CssMenuItem.isExplorationOrPrototype(objectAction);
        final String actionIdentifier = CssMenuItem.actionIdentifierFor(objectAction);
        final String cssClass = CssMenuItem.cssClassFor(objectAction);
        final String cssClassFa = CssMenuItem.cssClassFaFor(objectAction);
View Full Code Here

Examples of org.apache.isis.viewer.wicket.ui.errors.JGrowlBehaviour

        okButton.setOutputMarkupPlaceholderTag(true);
        editButton.setOutputMarkupPlaceholderTag(true);
        cancelButton.setOutputMarkupPlaceholderTag(true);
       
        // flush any JGrowl messages (typically concurrency exceptions) if they are added.
        okButton.add(new JGrowlBehaviour());
        editButton.add(new JGrowlBehaviour());
        cancelButton.add(new JGrowlBehaviour());
    }
View Full Code Here

Examples of org.apache.isis.viewer.wicket.ui.errors.JGrowlBehaviour

        okButton.setOutputMarkupPlaceholderTag(true);
        editButton.setOutputMarkupPlaceholderTag(true);
        cancelButton.setOutputMarkupPlaceholderTag(true);
       
        // flush any JGrowl messages (typically concurrency exceptions) if they are added.
        okButton.add(new JGrowlBehaviour());
        editButton.add(new JGrowlBehaviour());
        cancelButton.add(new JGrowlBehaviour());
    }
View Full Code Here

Examples of org.apache.isis.viewer.wicket.ui.errors.JGrowlBehaviour

                    }
                }));
            }

        };
        link.add(new JGrowlBehaviour());
        final boolean explorationOrPrototype = CssMenuItem.isExplorationOrPrototype(objectAction);
        final String actionIdentifier = CssMenuItem.actionIdentifierFor(objectAction);
        final String cssClass = CssMenuItem.cssClassFor(objectAction);

        return new LinkAndLabel(link, objectAction.getName(), null, false, explorationOrPrototype, actionIdentifier, cssClass);
View Full Code Here

Examples of org.apache.isis.viewer.wicket.ui.errors.JGrowlBehaviour

                        target.appendJavaScript("var ww = Wicket.Window.get();\n ww.autoSizeWindow();");
                    }
                    target.add(form);
                }
            };
            okButton.add(new JGrowlBehaviour());
            add(okButton);
           
            AjaxButton cancelButton = new AjaxButton(ID_CANCEL_BUTTON, new ResourceModel("cancelLabel")) {
                private static final long serialVersionUID = 1L;
View Full Code Here

Examples of org.apache.isis.viewer.wicket.ui.errors.JGrowlBehaviour

        okButton.setOutputMarkupPlaceholderTag(true);
        editButton.setOutputMarkupPlaceholderTag(true);
        cancelButton.setOutputMarkupPlaceholderTag(true);
       
        // flush any JGrowl messages (typically concurrency exceptions) if they are added.
        okButton.add(new JGrowlBehaviour());
        editButton.add(new JGrowlBehaviour());
        cancelButton.add(new JGrowlBehaviour());
    }
View Full Code Here

Examples of org.apache.isis.viewer.wicket.ui.errors.JGrowlBehaviour

                    }
                }));
            }

        };
        link.add(new JGrowlBehaviour());
        final boolean explorationOrPrototype = CssMenuItem.isExplorationOrPrototype(objectAction);
        final String actionIdentifier = CssMenuItem.actionIdentifierFor(objectAction);
        final String cssClass = CssMenuItem.cssClassFor(objectAction);

        return new LinkAndLabel(link, objectAction.getName(), null, false, explorationOrPrototype, actionIdentifier, cssClass);
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.