reRendering is not happening in jsf using data table

Posted by palakolanusrinu on Stack Overflow See other posts from Stack Overflow or by palakolanusrinu
Published on 2010-05-05T12:42:22Z Indexed on 2010/05/05 12:48 UTC
Read the original article Hit count: 235

Filed under:

HI, Rerendering is not working in my code please help in this

               <rich:dataTable id="bookIncome" value="#{myBean.ftBoookIncomelst}" var="item"  rowKeyVar="row" first="0"  width="100%">
                  <rich:subTable id="subBookIncome"value="#{item.txIncome}" var="income" rowKeyVar="row">


                  <rich:column id="descrtiptionColumn" width="30%">
                    <h:outputText  value="#{income.descriptionCell.value}" rendered="#{!item.editableRow}" 
                                  style="#{income.descriptionCell.boldClass}">
                        </h:outputText>  

                      <rich:inplaceInput layout="block"
                        value="#{income.descriptionCell.value}" required="true"
                        rendered="#{item.editableRow}"
                        requiredMessage="Description at row #{row+1} wasn't filled."
                        changedHoverClass="hover" viewHoverClass="hover"
                        viewClass="inplace" changedClass="inplace" selectOnEdit="true"
                        editEvent="onclick">


                    </rich:inplaceInput>

In the above code i have proper id for datatable and i'm calling my ajax call using

But its not showing any response but its hitting the server and its calling proper method and updating the required list also..Please help in this why its not rendering its not showing any exception on console also...

© Stack Overflow or respective owner

Related posts about ajax4jsf