Examples of UIBodyDesktopAppNavBar


Examples of org.dekka.component.objectInterface.UIBodyDesktopAppNavBar

    @Override
    public void encodeBegin(FacesContext context, UIComponent component) throws IOException {
        if (!RenderKitUtils.assertValid(context, component)) {
            return;
        }
        final UIBodyDesktopAppNavBar appNavBar = (UIBodyDesktopAppNavBar) component;
       
        appNavBar.setId(APPNAVBAR_ID);

        super.encodeBegin(context, appNavBar);
    }
View Full Code Here

Examples of org.dekka.component.objectInterface.UIBodyDesktopAppNavBar

        if (uibdh.isEnableApplicationMainNavBar()) {
            final UIDiv desktopNavbarWrapper = new UIDiv();
            desktopNavbarWrapper.setId(DESKTOPNAVBARWRAPPER_ID);
            for (UIComponent uIComponent : uibdh.getChildren()) {
                if (uIComponent instanceof UIBodyDesktopAppNavBar) {
                    UIBodyDesktopAppNavBar tmp = (UIBodyDesktopAppNavBar) uIComponent;
                    desktopNavbarWrapper.getChildren().add(tmp);
                    if (tmp.getStyle() != null){
                        desktopNavbarWrapper.setStyle(tmp.getStyle());
                        tmp.setStyle(null);
                    }
                    if (tmp.getStyleClass() != null){
                        desktopNavbarWrapper.setStyleClass(tmp.getStyleClass());
                        tmp.setStyleClass(null);
                    }
                }
            }
            uibdh.getChildren().add(desktopNavbarWrapper);
        } else {
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.