Package de.agilecoders.wicket.core.markup.html.bootstrap.button.dropdown

Examples of de.agilecoders.wicket.core.markup.html.bootstrap.button.dropdown.MenuDivider


            @Override
            protected List<AbstractLink> newSubMenuButtons(final String buttonMarkupId) {
                final List<AbstractLink> subMenu = new ArrayList<AbstractLink>();
                subMenu.add(new MenuHeader(Model.of("all available themes:")));
                subMenu.add(new MenuDivider());

                final IBootstrapSettings settings = Bootstrap.getSettings(getApplication());
                final List<ITheme> themes = settings.getThemeProvider().available();

                for (final ITheme theme : themes) {
View Full Code Here

TOP

Related Classes of de.agilecoders.wicket.core.markup.html.bootstrap.button.dropdown.MenuDivider

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.