RE: JSPG0103E: Unable to open taglibrary /WEB-INF/struts-bean.tld

2004-03-22 Thread Randy Dillon
I got this when I deployed without the taglib jar file in the war/ear files. :- -Original Message- :- From: ansuman_behera [mailto:[EMAIL PROTECTED] :- Sent: Friday, March 19, 2004 2:07 AM :- To: Struts Users Mailing List :- Subject: JSPG0103E: Unable to open taglibrary :-

Hierarchical Lists

2004-03-17 Thread Randy Dillon
Say I have 2 (or more) lists that are part of a hierarchy, such that the first list is a category (say Food Groups) and the second list contains children of each of the first list's items (for this example, let's say Food Types). How do I get the second list to be filtered based on the

RE: Hierarchical Lists

2004-03-17 Thread Randy Dillon
, March 17, 2004 12:54 PM :- To: [EMAIL PROTECTED] :- Subject: RE: Hierarchical Lists :- :- :- Short of a reload, I believe only a JavaScript/DHTML :- function can provide :- this behavior. :- :- :- -Original Message- :- From: Randy Dillon [mailto:[EMAIL PROTECTED] :- Sent: Wednesday, March

RE: Returning fully-stocked Actions/JSPs from other Actions

2004-03-04 Thread Randy Dillon
I'm not sure I fully understand what you're trying to do, but it seems like there is some confusion over the request scope and how long it lasts. Your first request scope ends once index.jsp loads; if you want to use the junkbean again after that, you have to save it again, either in the new

RE: Returning fully-stocked Actions/JSPs from other Actions

2004-03-04 Thread Randy Dillon
: Returning fully-stocked Actions/JSPs from other Actions :- :- :- Randy Dillon [EMAIL PROTECTED] wrote: :- :- ... Your first request scope ends once index.jsp loads; :- if you want :- to use the junkbean again after that, you have to save it again, :- either in the new request or in the session

RE: JavaScript Parameter

2004-02-26 Thread Randy Dillon
Have you tried: input type=hidden value=%=val% name=htmlVal / html:image pageKey=.. altKey=.. onclick=jsFunction(form,htmlVal) / :- -Original Message- :- From: Anirudh Jayanth [mailto:[EMAIL PROTECTED] :- Sent: Wednesday, February 25, 2004 10:32 PM :- To: 'Struts Users Mailing List' :-

RE: How to make readonly in Select Box

2004-02-20 Thread Randy Dillon
Seems to me that this violates good UI design. I mean, what purpose does a Select Box have if you can't select anything. If I rememember my UI theory correctly, the selections should be displayed in a form such as static text that makes it clear that they aren't changeable. I might use a

Logic:iterate Exception

2004-02-20 Thread Randy Dillon
I have logic that looks like this: % int n = 0; String strCat = ( (String[]) parms.get(cboCategory) )[n]; out.println(strCat + strCat + strCat); % logic:iterate id=cat indexId=i name=parms property=cboCategory logic:greaterThan value=0 name=i, /logic:greaterThan

RE: Logic:iterate Exception

2004-02-20 Thread Randy Dillon
I forgot to add, parms is a bean declared as such: bean:define id=parms name=ParmDynaForm type=org.apache.struts.action.DynaActionForm and is used all over this JSP. I don't get it. :- -Original Message- :- From: Randy Dillon :- Sent: Friday, February 20, 2004