RE: Handling parameters not in a form bean

2004-03-30 Thread Craig Berry
Easily done; just grab them using getParameter on the request object that's passed to your execute method. If you want to be a little slicker, you can also override the request processor to populate your form in a special way. -Original Message- From: Andy Engle [mailto:[EMAIL PROTECTED]

RE: Use JSP Expression Language in custom tags?

2004-03-26 Thread Craig Berry
I did this successfully last week. The key is to use the ExpressionEvaluatorManager class (from Apache taglibs) to do transform tag attributes. I created this method in my tag base class, and call it as needed on tag values. As written it only works on String-valued attrs, but that's all I need