Get one Showcase example work

UI Components for JSF
Post Reply
aha_01
Posts: 6
Joined: 03 Jun 2009, 12:23

19 May 2011, 13:36

Hi,
I am newbie here and want to know how can I implement one primefaces Showcase example in my dynamic web application.
I created a dynamic web application with jsf support and I added the primesfaces jar files to the web libraries.
Now I want to get the ajax example "simple PPR" work. How can I do that?
I have two files ".xhtml" and the bean-file:

Code: Select all

/**  pprUpdate.xhtml */
<h:form>                 
    <h:panelGrid columns="4" cellpadding="5">  
        <h:outputLabel for="name" value="Name:" style="font-weight:bold"/>  
        <p:inputText id="name" value="#{pprBean.firstname}" />  
        <p:commandButton value="Submit" update="display"/>  
        <p:ajaxStatus style="width:16px;height:16px;">  
            <f:facet name="start">  
                <h:graphicImage value="../design/ajaxloading.gif" />  
            </f:facet>  
            <f:facet name="complete">  
                <h:outputText value="" />  
            </f:facet>  
        </p:ajaxStatus>  
    </h:panelGrid> 
    <h:outputText value="#{pprBean.firstname}" id="display" />  
</h:form>  

Code: Select all

/** PPRBean.java  */
    package myPackage;  
    import java.io.Serializable;  
    public class PPRBean implements Serializable {  
        private String firstname;  
        public String getFirstname() {  
            return firstname;  
        }  
        public void setFirstname(String firstname) {  
            this.firstname = firstname;  
        }  
    }  
Thanks for every help ;)
Aha

robert.m
Posts: 226
Joined: 07 Dec 2010, 22:52
Location: Salzburg/Austria

19 May 2011, 14:04

Assuming you're working with JSF2, your PPRBean needs to have the @ManagedBean annotation.

But I guess if this is the real problem, you should first read a little bit more into the JSF basics before working with PrimeFaces.

Post Reply

Return to “PrimeFaces”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 39 guests