Package de.agilecoders.wicket.core.markup.html.bootstrap.dialog

Examples of de.agilecoders.wicket.core.markup.html.bootstrap.dialog.Alert


        if(referrer==null) {
            logger.info("History page requested without referer [" + getClientIpAddress() + "]");
            throw new RestartResponseException(HelpPage.class);
        }

        add(new Alert("newFeatureAlert", Model.of("Check out our <a href=\"/help\"><strong>New Features</strong></a> like <code>image upload</code> via clipboard or drag and drop, <code>keyboard shortcuts</code>, and more!")) {
            protected Component createMessage(final String markupId, final IModel<String> message) {
                return new Label(markupId, message).setEscapeModelStrings(false);
            }
        });
View Full Code Here


    public PasteItemPage(final PageParameters params) {
        super(PasteItemPage.class);

        logger.info("Referrer:" + getReferrer());

        Alert newFeatureAlert;
        add(newFeatureAlert = new Alert("newFeatureAlert", Model.of("Check out our <a href=\"/help\"><strong>New Features</strong></a> like <code>image upload</code> via clipboard or drag and drop, <code>keyboard shortcuts</code>, and more!")) {
            protected Component createMessage(final String markupId, final IModel<String> message) {
                return new Label(markupId, message).setEscapeModelStrings(false);
            }
        });
View Full Code Here

TOP

Related Classes of de.agilecoders.wicket.core.markup.html.bootstrap.dialog.Alert

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.