PSI wrote:
> I am using MyFaces, and following code works except for "title" ??
some how
> it does not bind values to title.
Okay, but these are not JSF tags... they are not MyFaces tags.
You will run into problems using the c:forEach like that in JSF 1.1.
Please see [1].
title="${columnVal}" - this is NOT a value-binding expression. It would
look more like #{columnVal}... except then you get problems I mentioned
above.
[1] http://java.sun.com/developer/technicalArticles/J2EE/jsp_21/
Regards,
Jeff Bischoff
Kenneth L Kurz & Associates, Inc.
PSI wrote:
I am using MyFaces, and following code works except for "title" ?? some how
it does not bind values to title.
Nebinger, David wrote:
Well, first of all your syntax appears to be JSP-based and not JSF.
Second of all (and someone please correct me if I am wrong), but
displaytag is displaytag supported by jsf?
-----Original Message-----
From: PSI [mailto:[EMAIL PROTECTED]
Sent: Monday, November 06, 2006 12:39 PM
To: [email protected]
Subject: displaytag dynamic title value binding??
Hi!
I am trying to display dynamic columns, i am able to display
those though
but problem is "title" it is not binding values.
<c:forEach var="columnVal" varStatus="status"
items="${dataRowList}">
<display:column
title="${columnVal}"
sortable="true">
<c:out value="${columnVal}"/>
</display:column>
</c:forEach>
title does not bind any values, it simply outputs anything as
string !!
title="${columnVal}"
Any help would be appreciated.
Thanks,
Anil G
--
View this message in context:
http://www.nabble.com/displaytag-dynamic-title-value-binding--
-tf2583889.html#a7203355
Sent from the MyFaces - Users mailing list archive at Nabble.com.