Package de.agilecoders.wicket.core.settings

Examples of de.agilecoders.wicket.core.settings.ThemeProvider


                .getBootstrapLessCompilerSettings().setUseLessCompiler(true);
        */

//        settings.getActiveThemeProvider().setActiveTheme("bootstrap3");

        ThemeProvider themeProvider = new BootswatchThemeProvider() {{
            defaultTheme("bootstrap");
        }};
        settings.setThemeProvider(themeProvider);

//        WicketWebjars.install(this);
View Full Code Here


    /**
     * configures wicket-bootstrap and installs the settings.
     */
    private void configureBootstrap() {
        final IBootstrapSettings settings = new BootstrapSettings();
        final ThemeProvider themeProvider = new BootswatchThemeProvider(BootswatchTheme.Flatly);

        settings.setJsResourceFilterName("footer-container")
                .setThemeProvider(themeProvider);

        Bootstrap.install(this, settings);
View Full Code Here

TOP

Related Classes of de.agilecoders.wicket.core.settings.ThemeProvider

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.