i have the following bean:

public class MyBean {

public ArrayList<ReportRow> getReportRows()
    {
        return reportRows;
    }



    private final ArrayList<ReportRow> reportRows = 
        new ArrayList<ReportRow>(Arrays.asList(

                new ReportRow("","")
    ));

    public ArrayList<ReportRow> getOrderList() {

        return reportRows;

    }

    public String addAction() {

        ReportRow row = new ReportRow("", "");
        reportRows.add(row);
        return null;
    }



    public class ReportRow{

        String reportColumnName;
        String reportColumnDesc;

        public ReportRow(String reportColumnName,String reportColumnDesc) {

            this.reportColumnName=reportColumnName;
            this.reportColumnDesc=reportColumnDesc;
        }

        public String getReportColumnName()
        {
            return reportColumnName;
        }

        public void setReportColumnName(String reportColumnName)
        {
            this.reportColumnName = reportColumnName;
        }

        public String getReportColumnDesc()
        {
            return reportColumnDesc;
        }

        public void setReportColumnDesc(String reportColumnDesc)
        {
            this.reportColumnDesc = reportColumnDesc;
        }

    }

}

jsf page:

<t:dataTable value="#{myBean.reportRows}" var="o"
            id="reportColumnsTable" styleClass="standardTable" headerClass="standardTable_Header"
            rowStyleClass="#{myBean.viewDelayedRsd}"
            >

            <h:column>

            <t:outputLabel value="Column name:"></t:outputLabel>
            <t:inputText id="ReportColumnName" value="#{o.reportColumnName}" required="true">
            </t:inputText>

            </h:column>

            <h:column>

            <t:outputLabel value="Column Desc:"></t:outputLabel>
            <t:inputText id="ReportColumnDesc" value="#{o.reportColumnDesc}" >

            </t:inputText>

            </h:column>

            <h:column>

            <h:outputLink value="#add"><h:outputText value="Add"/>
                        <a4j:support ajaxSingle="true" event="onclick" action="#{rprtBean.addAction}"
                        reRender="reportColumnsTable,msgPanel" />                       
            </h:outputLink>

            </h:column>

            </t:dataTable>

problem is that when i click on add, it generates a new row, and clear the old one, and i want to maintain the values of old row, any ideas ?

link|improve this question

feedback

2 Answers

You're using a <h:outputLink> instead of a <h:commandLink>. The <h:outputLink> doesn't submit the form at all, it fires a plain GET request. The <a4j:support> won't work properly inside a <h:outputLink>. Replace it by a <h:commandLink>:

<h:commandLink value="Add" action="#{rprtBean.addAction}">
    <a4j:support reRender="reportColumnsTable,msgPanel" ajaxSingle="true" />
</h:commandLink>

Then, you need to ensure that you preserve the data model for subsequent request in case that your bean is request scoped. There are several ways to achieve this:

  1. Set either Tomahawk datatable's preserveDataModel to true:

    <t:dataTable preserveDataModel="true">
    
  2. Or save the bean state in the view scope. Add the following tag somewhere in the page:

    <t:saveState value="#{myBean}" />
    

    or since you're also using RichFaces/Ajax4jsf:

    <a4j:keepAlive beanName="myBean" />
    
link|improve this answer
when i use first solution it gives an exception: java.io.NotSerializableException, so i made the bean implements serilizable, the error gone, but when i tried it, nothing new, still old row text fileds reset – Msaleh Sep 10 '11 at 14:04
second solution also doesn't work, problem still there. – Msaleh Sep 10 '11 at 14:06
Yes, the bean must implement serializable. Try the <t:saveState>. I'm by the way not sure how that works in combination with <a4j:support>. Perhaps the <a4j:keepAlive> is the only which would work. At least, the point is that you need to preserve the same datamodel/bean in subsequent requests. The JSF 2.x solution would by the way be to put the bean in view scope. – BalusC Sep 10 '11 at 14:07
third solution gives me an exception too: Attribute 'name' for view scope bean must be literal – Msaleh Sep 10 '11 at 14:07
According to the RF 3.3.x documentation the attribute name should be beanName and it should accept EL. What RF/A4J version are you using? The exception basically tells that it should actually be a literal like <a4j:keepAlive beanName="myBean" />. Give it a try, apparently you're using an older version. – BalusC Sep 10 '11 at 14:12
show 3 more comments
feedback
up vote 0 down vote accepted

i just used the a4j command link and everything worked fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.