accessing attributes of an object in data table

UI Components for JSF
Post Reply
sasisuman
Posts: 8
Joined: 21 Jun 2011, 10:17

20 Sep 2011, 08:09

Hi gurus,

I am JSF beginner, i have a list of objects like below

Code: Select all

List<Car> smallCars;
inside car i have another object ManufacturerSale, like below

Code: Select all

public class Car{
    ManufacturerSale sale;
    String carName;
}

public class ManufacturerSale
   int profit;
   int thisYearSale;
   String manufacturerName;
}
<h:form>
    <p:dataTable var="car" value="#{tableBean.carsSmall}" >
        <p:column>
            <f:facet name="header">
                    Model
            </f:facet>
            <h:outputText value="#{car.model}" />
        </p:column>

        <p:column>
            <f:facet name="header">
                    Year
            </f:facet>
            <h:outputText value="#{car.year}" />
        </p:column>

        <p:column>
            <f:facet name="header">
                    Manufacturer
            </f:facet>
            <h:outputText value="#{car.manufacturer}" />
        </p:column>

        <p:column>
            <f:facet name="header">
                    Color
            </f:facet>
            <h:outputText value="#{car.color}" />
        </p:column>
        <p:column>
            <f:facet name="header">
                    Manufacturer Profit
            </f:facet>
            <h:outputText value="#{car.sale.thisYearSale}" />
        </p:column>        
    </p:dataTable>
</h:form>

The last column is never displayed, please help.

sasisuman
Posts: 8
Joined: 21 Jun 2011, 10:17

22 Sep 2011, 07:36

Hi All,

Is there a solution for this???

Matrium
Posts: 112
Joined: 16 May 2011, 08:27

22 Sep 2011, 08:44

i guess you shortent this up, so you DO have a getter for "sale" in the class "Car", right?
PrimeFaces (Elite) 4.0.13, Majorra 2.1.28, Tomcat 7.0.53
Testing with Firefox, Chrome and IE9+IE10
<3 Primefaces!!!

sasisuman
Posts: 8
Joined: 21 Jun 2011, 10:17

27 Sep 2011, 05:47

Yes i do have a getter for the sale, there are 2 different POJO's

Post Reply

Return to “PrimeFaces”

  • Information
  • Who is online

    Users browsing this forum: eeveez and 31 guests