|
I am trying to use the following code in a jsp page.
<c:set var=”am” value=”${applicationScope.assetsManager}”/> <display:table name=”${am.view} id=”asset”> column tags </display:table>
When I do this, I get the message “Nothing found to display.” on my page.
If I use <display:table name=”am.view” id=”asset”>, I also get “Nothing found to display.”
If I use <display:table name=”applicationScope.assetsManager.view” id=”asset”>, it works.
This seems to indicate that the non-EL version of displaytag is being used. How can I get it to use the EL version?
I can use jstl c tags in the tag body of the column tag fine.
I went through the dependencies and copied the necessary commons jar files to my WEB-INF/lib.
The server I am using is Tomcat 4.1.27 which implements jsp 1.2
I also want to use another property from the assetManager for the pagesize attribute.
Thanks for any help. Let me know if you need more information. |

