Re: Bean Taglib Help

2005-03-08 Thread Richard Reyes
Thanks. On Tue, 08 Mar 2005 13:33:46 +0100, Nicolas De Loof <[EMAIL PROTECTED]> wrote: > > You can use the EL-enable version of display tag to do this (assuming > Konstants.SESSION_USER_KEY = "users") : > > > > Now, if you don't want to break constants usage, you may try to use > jakarta unst

Re: Bean Taglib Help

2005-03-08 Thread Nicolas De Loof
You can use the EL-enable version of display tag to do this (assuming Konstants.SESSION_USER_KEY = "users") : Now, if you don't want to break constants usage, you may try to use jakarta unstandard taglib to bind the static field from your Konstants class to a pageContext variable : (http://j

Bean Taglib Help

2005-03-08 Thread Richard Reyes
Hello All, I have this code... <% User user = ( User ) session.getAttribute( Konstants.SESSION_USER_KEY ) ; ArrayList x = user.getRusers() ; request.setAttribute( "x",x ) ; %> How do I use the Struts Bean Liblraries to remove the scriptlet. TIA. Richard -