I have 2 suggestions : - replace tr:table with tr:treeTable, and use initiallyExpanded="true" (feasible, but there's work to do to have something that resembles what you want) - examine the source code behind the "expand all" button of your table. Add equivalent javascript code just after the tr:table markup. Don't use partialTriggers on the table, but instead put the table and the javascript inside a panel, then use partialTriggers on that panel.
Hope this helps, Regards, Cedric Durmont 2010/6/2 boreddy.ravi <[email protected]>: > > Hi All, > > I have a Trinidad JSF table which will be displayed with some > rows.I have the following requirement. > > > First time when the jsf page is displayed, all rows should be displayed in > expanded manner.I have written the following code. > > <tr:table allDetailsEnabled="true" width="960px" id="memberSearchResults" > binding="#{MemberSearchResults.memberSearchResultsTable}" > > inlineStyle="background-color:white;" var="results" > verticalGridVisible="false" > > value="#{MemberSearchResults.memberSearchResults}" rows="25" > horizontalGridVisible="false" > > rowBandingInterval="1"> > > <f:facet name="detailStamp"> > > something here > > </f:facet> > > > <tr:column> > > something here > > </tr:colomn> > > > > <tr:column> > > something here > > </tr:colomn> > > > </tr:table> > > > Can you please suggest something here? > > -- > View this message in context: > http://old.nabble.com/Trinidad-table-rows-need-be-displayed-in-expanded-mode-by-default--tp28755844p28755844.html > Sent from the MyFaces - Users mailing list archive at Nabble.com. > >

