Package org.richfaces.component.event

Examples of org.richfaces.component.event.SearchEvent


            if (SUGGEST_VALUE_EVENT.equals(eventTypeParam)) {
                new ValueSuggestionEvent(component, searchTermParam, facetParam).queue();
            } else if (SUGGEST_FACET_EVENT.equals(eventTypeParam)) {
                new FacetSuggestionEvent(component, searchTermParam).queue();
            } else if (SEARCH_EVENT.equals(eventTypeParam)) {
                final SearchEvent searchEvent = new SearchEvent(component);
                searchEvent.setPhaseId(PhaseId.INVOKE_APPLICATION);
                searchEvent.queue();
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.richfaces.component.event.SearchEvent

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.