Package org.primefaces.cookbook.model

Examples of org.primefaces.cookbook.model.BookTreeNode


            chapter9);
        new DefaultTreeNode(NODE_TYPE, new BookTreeNode("Mapping with Google Maps", "chapter9/map.xhtml"), chapter9);
    }

    private void constructChapter10(TreeNode chapter10) {
        new DefaultTreeNode(NODE_TYPE, new BookTreeNode("Power of PrimeFaces selectors", "chapter10/pfs.xhtml"),
            chapter10);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Programmatic updating and scrolling with RequestContext",
                "chapter10/requestContext.xhtml"), chapter10);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Two ways to trigger JavaScript execution on server side",
                "chapter10/javaScriptExec.xhtml"), chapter10);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Adding AJAX callbacks parameters - validation within dialog",
                "chapter10/ajaxCallbacks.xhtml"), chapter10);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Polling - sending of periodical AJAX requests", "chapter10/polling.xhtml"), chapter10);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Blocking page pieces during long-running AJAX calls", "chapter10/blockUI.xhtml"),
            chapter10);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Remembering current menu selection", "chapter10/rememberMenu.xhtml"), chapter10);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Controlling form submitting by DefaultCommand", "chapter10/defaultCommand.xhtml"),
            chapter10);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Clever focus management in forms", "chapter10/focusManagement.xhtml"), chapter10);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Layout pitfalls with menus and dialogs", "chapter10/layoutPitfalls.xhtml"), chapter10);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Targetable messages with severity levels", "chapter10/targetableMessages.xhtml"),
            chapter10);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Leveraging Schedule lazy loading feature", "chapter10/scheduleLazyLoad.xhtml"), chapter10);
    }
View Full Code Here


        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Leveraging Schedule lazy loading feature", "chapter10/scheduleLazyLoad.xhtml"), chapter10);
    }

    private void constructChapter11(TreeNode chapter11) {
        new DefaultTreeNode(NODE_TYPE, new BookTreeNode("Custom Layout component", "chapter11/customComponent.xhtml"),
            chapter11);
    }
View Full Code Here

            chapter11);
    }

    private void constructChapter12(TreeNode chapter12) {
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Showing error messages in tooltips", "chapter12/messagesTooltips.xhtml"), chapter12);
        new DefaultTreeNode(NODE_TYPE, new BookTreeNode("Rotating and resizing images", "chapter12/rotateResize.xhtml"),
            chapter12);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Managing states with TriStateCheckbox, -ManyCheckbox",
                "chapter12/triStateCheckboxes.xhtml"), chapter12);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Supporting numeric inputs with InputNumber", "chapter12/inputNumber.xhtml"), chapter12);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Creating pleasant editor interface for code-like content", "chapter12/codeMirror.xhtml"),
            chapter12);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Calling Java methods with parameters on client-side", "chapter12/remoteCommand.xhtml"),
            chapter12);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Building dynamic form described by model", "chapter12/dynaForm.xhtml"), chapter12);
        new DefaultTreeNode(NODE_TYPE,
            new BookTreeNode("Timeline - displaying events in chronological order", "chapter12/timeline.xhtml"),
            chapter12);
    }
View Full Code Here

TOP

Related Classes of org.primefaces.cookbook.model.BookTreeNode

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.