Examples of SuggestionMode


Examples of org.openfaces.component.input.SuggestionMode

        if (AjaxUtil.getSkipExtraRenderingOnPortletsAjax(context))
            return;

        DropDownFieldBase dropDownField = (DropDownFieldBase) uiComponent;

        SuggestionMode suggestionMode = dropDownField.getSuggestionMode();
        int preloadedItemCount = dropDownField.getPreloadedItemCount();
        if (preloadedItemCount < -1)
            throw new FacesException("preloadedItemCount attribute should be specified as -1, 0, or a positive " +
                    "number, but was specified as: " + preloadedItemCount +
                    ". Component id: " + dropDownField.getClientId(context));
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.