|
I’m using DynaBeans pass to a <display:table/>
tag, as I’m passing dynamic queries to the page. Problem is I don’t want to use <display:column>
tags because then I’d have to use metadata on each query to set field
names and the number of columns. But, I want every column to be sortable. This isn’t available as a <display:table>
attribute. Anyone know how to force every column to be sortable? I even tried using a for each loop (i.e. <display:table><c:forEach…><display:column
property=”<%=customBean%>”/><c:forEach></display:table>
) but, the table tag doesn’t seem to support any other tags except it’s
own inside <display:table>. |

