Chetzakis Eleftherios wrote: > Hi, > > I've been trying to get commandLinks to work along with displayTag but > with no luck at all. > > the following code snipet displays my page code using the display tag > > <f:verbatim> > <display:table id="datagrid" name="sessionScope.tabledata" > requestURI="myPage.jspf" excludedParams="*" > > <display:column property="myProperty" title="a property" > sortable="true" /> > <display:column title="a property again"> > <c:out value="${datagrid.myProperty}"/> > </display:column> > </display:table> > </f:verbatim> > > Q1: How can I use <h:comandLink> tags within display tag?
I don't know JSF, so I really have no idea on that. > Q2: Why the JSTL <c:out> does not produce any output? It's 99% likely that the cause is the fact that you're using the id attribute on your <display:table> tag. Try using the uid attribute instead: <display:table uid="datagrid" ...> I ran into this problem when we moved from WebLogic 6.1/JDK 1.3 to WebLogic 9.1/JDK 1.5. I'm pretty sure it's because the id attribute is getting converted into the DOM id of the generated HTML table element and no longer being used as the attribute ID of the current list item, but I haven't actually looked into the code to verify that. All I know is changing it to uid="xxx" made everything work again! -- Rick Herrick [EMAIL PROTECTED] Proud member of the reality-based community Never try to discourage thinking for you are sure to succeed.--Bertrand Russell ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ displaytag-user mailing list displaytag-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/displaytag-user