RE: Cooperating tag

2002-12-31 Thread Karr, David
In the Struts source distribution, look at: contrib/struts-el/src/share/org/apache/strutsel/taglib/html/ELButtonTag.java Look at the "evalAttr()" and "evaluateExpressions()" methods, and the "EvalHelper" utility class. The latter is what calls the EL evaluator. Also note that you may have to w

RE: Cooperating tag

2002-12-31 Thread Randy Belknap
er 31, 2002 7:54 AM > To: Tag Libraries Users List > Subject: RE: Cooperating tag > > > In JSP 1.2, you have to specifically use the API for the JSTL > expression language engine if you want attributes to use the > "${...}" syntax. In JSP 2.0, this will happen

RE: Cooperating tag

2002-12-31 Thread Karr, David
In JSP 1.2, you have to specifically use the API for the JSTL expression language engine if you want attributes to use the "${...}" syntax. In JSP 2.0, this will happen automagically, but we're not there yet. If you want one example of how this is done, look at the Struts-EL contrib library, w