>From: "Anshuman Abhishek Roy" <[EMAIL PROTECTED]>
>
>
> Hi,
>
> I am unable to do a PPR in my component.
>
> I have a table with various columns of input text in it. The requirement is
> to
> display the total on the last column. Although in my backing bean everything
> works fine and total is updated but I am not able to update in the page
> itself.
>
> I have used autosubmit="true" in my and also I have used partial
> triggers. But total is not getting updated.
>
> for reference I am putting the code below:
><tr:table id="XYZComponentTable" var="abc"
>value="#{XYZComponentBackingBean.getList}"
>binding="#{XYZComponentBackingBean.table}" rows="10">
>
>
> <tr:column align="right">
> <f:facet name="header">
> <tr:outputText value="* Date" />
> </f:facet>
> <tr:inputDate value="#{abc.Date}" />
> <f:facet name="footer" >
> <tr:outputText value="Total"
>styleClass="refAreaTextBold"></tr:outputText>
> </f:facet>
> </tr:column>
><tr:column>
> <f:facet name="header">
> <tr:outputText value="* Amount($)" />
> </f:facet>
> <tr:inputText id="amount"
> value="#{abc.Amount}"
> simple="true"
> columns="12"
> immediate="true"
> autoSubmit="true"
> valueChangeListener="#{abc.computeAmount}"
> required="true"/>
> <f:facet name="footer" >
> <tr:outputText value="#{XYZComponentBackingBean.netTotal}"
> readOnly="true"
>partialTriggers="amount"/>
> </f:facet>
></tr:column>
></tr:table>
>
>
> Am I missing something??
>
If you don't already, I would try adding the table under a tr:form and
tr:panelPartialRoot.
<tr:form id="form">
<tr:panelPartialRoot id="ppr">
<tr:table ...
</tr:panelPartialRoot>
</tr:form>
>
>
> regards,
>
> Anshuman
>
Gary
>
>
> Disclaimer
>
> This email and any files transmitted with it are confidential and intended
> solely for the use of the individual or entity to whom it is addressed. If
> you
> have received this communication in error, please immediately notify the
> [EMAIL PROTECTED] and destroy the original message. The recipient should
> check this email and any attachments for the presence of viruses. Ness has
> taken every reasonable precaution to minimize this risk, and accepts no
> liability for any damage caused by any virus transmitted in this email. Ness
> reserves the rights to monitor and review the content of all messages sent to
> or
> from this E-mail address, and store them on the Ness E-mail system.