p:autocomplete dropdown and tabindex issue

UI Components for JSF
Post Reply
arturo
Posts: 90
Joined: 23 Aug 2011, 09:57
Location: Mexico

20 Sep 2011, 08:01

Hi there,

I have a form with multiple p:autocomplete with dropdown enabled and multiple inputText, the problem is when the autocomplete has focus and you press the tab button, the associated dropdown button gets focus instead of the next inputText or next p:autoComplete; so you must press the tab button 2 times for that. A use case with multiple p:inputText and p:autocomplete this issue gets very uncomfortable for the end user.

This can be replicated at showcase:
http://www.primefaces.org/showcase-labs ... eBasic.jsf

Starting from the first autocomplete, press the tab button and the next autocomplete gets focus and so on, but when you are in the last autocomplete with dropdown and press the tab button, the dropdown button gets the focus instead of the Submit commandButton which in this case should be the next component to get focus.

Any suggestions for this issue?

Thanks
PrimeFaces 4.0 | Extensions 1.1.0 | GlassFish 4.0 | Mojarra 2.2.4 | NetBeans 7.3.1

smithh032772
Posts: 6144
Joined: 10 Sep 2011, 21:10

15 Dec 2011, 07:07

I am finally able to use p:autoComplete successfully in my JSF/PrimeFaces web app.

1. Try to add onblur="close()" which hides suggested items menu
2. Replace dropdown="true" with a ("Select") commandButton that will open a p:dataTable on same page that lists all items; i did this, because I don't like the behavior or implementation of dropdown="true".
Howard

PrimeFaces 6.0, Extensions 6.0.0, Push (Atmosphere 2.4.0)
TomEE+ 1.7.4 (Tomcat 7.0.68), MyFaces Core 2.2.9, JDK8
JUEL 2.2.7 | OmniFaces | EclipseLink-JPA/Derby | Chrome

Java EE 6 Tutorial|NetBeans|Google|Stackoverflow|PrimeFaces|Apache

m_sergiuv
Posts: 9
Joined: 06 Jan 2012, 09:42

25 Jan 2012, 11:30

Hi smithh032772,

Can you explain please second step?
2. Replace dropdown="true" with a ("Select") commandButton that will open a p:dataTable on same page that lists all items; i did this, because I don't like the behavior or implementation of dropdown="true".

Thanks!

smithh032772
Posts: 6144
Joined: 10 Sep 2011, 21:10

25 Jan 2012, 23:20

m_sergiuv wrote:Hi smithh032772,

Can you explain please second step?
2. Replace dropdown="true" with a ("Select") commandButton that will open a p:dataTable on same page that lists all items; i did this, because I don't like the behavior or implementation of dropdown="true".

Thanks!
pf_EditCustomer.xhtml (below) includes p:autoComplete and p:commandButton ('Select') which will display another xhtml page. Of course, bean has some logic for setting ui:include src="#{bean.page}" on a parent xhtml page.

Code: Select all

<?xml version='1.0' encoding='UTF-8' ?> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:p="http://primefaces.org/ui">
    
    <ui:composition>
        
        <p:panel header="Customer">
            
            <h:panelGroup>
                <p:autoComplete id="customerId" value="#{pf_ordersController.selectedCustomer}"
                                completeMethod="#{pf_customerController.complete}" var="c"
                                itemLabel="#{c.customerName}" itemValue="#{c}"
                                queryDelay="300" size="50" onblur="close()">
                    <p:ajax event="itemSelect" update=":orderEditForm"/>
                    <p:column>
                        ##{c.customerId} #{c.customerName}
                    </p:column>
                </p:autoComplete>
                <p:commandButton value="Select" icon="ui-icon-search"
                                 actionListener="#{pf_ordersController.setPageEditCustomer(pf_customerController.prepareSelectCustomerForOrder())}"
                                 update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu">
                </p:commandButton>
            </h:panelGroup>
            
        </p:panel>
        
        <p:outputPanel id="ocpTabPanel" layout="block">
            <ui:include src="#{pf_orderCustomerPointOfContactController.getPage('orderCustomerPointOfContact', pf_ordersController.selected, pf_ordersController.selected.orderId)}"/>
        </p:outputPanel>

    </ui:composition>

</html>
pf_SelectCustomerForOrder.xhtml opened by p:commandButton on page above

Code: Select all

<?xml version='1.0' encoding='UTF-8' ?> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:p="http://primefaces.org/ui">
    
    <ui:composition>
        
        <p:panel header="Select Customer">

            <p:dataTable id="dt_selectCustomerForOrder" var="customer" value="#{pf_customerController.lazyModel}" 
                        paginator="true" paginatorAlwaysVisible="false" rows="10" rowsPerPageTemplate="10,25,50,100,500,1000"
                        paginatorTemplate="Page {CurrentPageReport} Go to page: {JumpToPageDropdown} &nbsp; {FirstPageLink} {PreviousPageLink} {NextPageLink} {LastPageLink} &nbsp; Rows per page: {RowsPerPageDropdown}"
                        selection="#{pf_customerController.selectedRow}" selectionMode="single">

                <p:ajax event="page" update=":@this :@form:_ajax_status"/>
                    
                <f:facet name="header">
                    <h:panelGrid columns="1" cellpadding="1" cellspacing="1" width="100%">
                        <h:panelGroup>
                            <p:commandButton value="Cancel" icon="ui-icon ui-icon-arrowthick-1-w"
                                             update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"
                                             actionListener="#{pf_ordersController.setPageEditCustomer(pf_customerController.cancelSelectCustomerForOrder())}"/>
                            <p:commandButton value="Select" icon="ui-icon-check"
                                             update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"
                                             actionListener="#{pf_ordersController.setSelectedCustomer(pf_customerController.selectCustomerForOrder())}"/>
                            <p:commandButton value="Filter" icon="ui-icon-search"
                                             update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"
                                             actionListener="#{pf_customerController.prepareSelectCustomerForOrder}"/>
                            <p:commandButton value="Clear Filter"
                                             update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"
                                             actionListener="#{pf_customerController.clearFilter}"/>
                            <p:commandButton value="Sort By #{pf_customerController.sortBy}" icon="ui-icon-arrowrefresh-1-s"
                                             update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"
                                             actionListener="#{pf_customerController.toggleSortBy}"/>
                        </h:panelGroup>
                        <h:panelGroup>
                            <p:commandButton value="A" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('A')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="B" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('B')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="C" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('C')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="D" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('D')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="E" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('E')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="F" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('F')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="G" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('G')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="H" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('H')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="I" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('I')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="J" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('J')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="K" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('K')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="L" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('L')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="M" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('M')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="N" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('N')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="O" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('O')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="P" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('P')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="Q" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('Q')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="R" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('R')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="S" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('S')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="T" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('T')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="U" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('U')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="V" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('V')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="W" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('W')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="X" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('X')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="Y" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('Y')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="Z" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('Z')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                        </h:panelGroup>
                    </h:panelGrid>
                </f:facet>

                <p:column>
                    <f:facet name="header">
                        <h:panelGrid columns="1">
                            <h:outputText value="Customer ID" />
                            <p:inputText value="#{pf_customerController.filterCustomerId}" size="8"/>

                        </h:panelGrid>
                    </f:facet>
                    <h:outputText value="#{customer.customerId}" />
                </p:column>

                <p:column>
                    <f:facet name="header">
                        <h:panelGrid columns="1">
                            <h:outputText value="Customer Name" />
                            <p:inputText value="#{pf_customerController.filterCustomerName}" size="20"/>

                        </h:panelGrid>
                    </f:facet>
                    <h:outputText value="#{customer.customerName}" />
                </p:column>

                <f:facet name="footer">
                    <h:panelGrid columns="1" cellpadding="1" cellspacing="1" width="100%">
                        <h:panelGroup>
                            <p:commandButton value="A" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('A')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="B" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('B')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="C" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('C')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="D" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('D')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="E" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('E')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="F" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('F')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="G" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('G')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="H" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('H')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="I" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('I')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="J" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('J')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="K" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('K')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="L" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('L')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="M" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('M')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="N" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('N')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="O" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('O')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="P" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('P')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="Q" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('Q')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="R" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('R')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="S" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('S')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="T" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('T')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="U" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('U')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="V" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('V')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="W" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('W')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="X" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('X')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="Y" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('Y')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                            <p:commandButton value="Z" actionListener="#{pf_customerController.setFilterCustomerNameBeginWith('Z')}" update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"/>
                        </h:panelGroup>
                        <h:panelGroup>
                            <p:commandButton value="Cancel" icon="ui-icon ui-icon-arrowthick-1-w"
                                             update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"
                                             actionListener="#{pf_ordersController.setPageEditCustomer(pf_customerController.cancelSelectCustomerForOrder())}"/>
                            <p:commandButton value="Select" icon="ui-icon-check"
                                             update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"
                                             actionListener="#{pf_ordersController.setSelectedCustomer(pf_customerController.selectCustomerForOrder())}"/>
                            <p:commandButton value="Filter" icon="ui-icon-search"
                                             update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"
                                             actionListener="#{pf_customerController.prepareSelectCustomerForOrder}"/>
                            <p:commandButton value="Clear Filter"
                                             update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"
                                             actionListener="#{pf_customerController.clearFilter}"/>
                            <p:commandButton value="Sort By #{pf_customerController.sortBy}" icon="ui-icon-arrowrefresh-1-s"
                                             update=":orderEditForm:_ajax_status :orderEditForm:formMessages :orderEditForm:panelBelowEditMenu dt_selectCustomerForOrder"
                                             actionListener="#{pf_customerController.toggleSortBy}"/>
                        </h:panelGroup>
                    </h:panelGrid>
                </f:facet>

            </p:dataTable>

        </p:panel>

    </ui:composition>

</html>
1. For endusers that prefer to use keyboard to search for data, p:autoComplete is in place.
2. For endusers that prefer to mouse-click to search for data, p:commandbutton Select button opens p:dataTable xhtml for browsing purposes.
Howard

PrimeFaces 6.0, Extensions 6.0.0, Push (Atmosphere 2.4.0)
TomEE+ 1.7.4 (Tomcat 7.0.68), MyFaces Core 2.2.9, JDK8
JUEL 2.2.7 | OmniFaces | EclipseLink-JPA/Derby | Chrome

Java EE 6 Tutorial|NetBeans|Google|Stackoverflow|PrimeFaces|Apache

kukeltje
Expert Member
Posts: 9605
Joined: 17 Jun 2010, 13:34
Location: Netherlands

25 Jan 2012, 23:23

Another blog ;-)

smithh032772
Posts: 6144
Joined: 10 Sep 2011, 21:10

25 Jan 2012, 23:26

kukeltje wrote:Another blog ;-)
Smiling. True!
Howard

PrimeFaces 6.0, Extensions 6.0.0, Push (Atmosphere 2.4.0)
TomEE+ 1.7.4 (Tomcat 7.0.68), MyFaces Core 2.2.9, JDK8
JUEL 2.2.7 | OmniFaces | EclipseLink-JPA/Derby | Chrome

Java EE 6 Tutorial|NetBeans|Google|Stackoverflow|PrimeFaces|Apache

m_sergiuv
Posts: 9
Joined: 06 Jan 2012, 09:42

26 Jan 2012, 14:09

Thanks smithh032772!

Good example! ;)

Post Reply

Return to “PrimeFaces”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 44 guests