Re: Hate Myself for Not Getting Drop-Down Menu Right

2004-09-20 Thread Caroline Jen
I see what you mean now. You are correct. I have to wrap tag with a tag. This is not the first time that I stumble on this problem. I should surely learn a lesson now. Thanks a lot for pointing out my mistake. This mistake should be imprinted in my head from now on. --- Matt Bathje <[EMAIL

Re: Hate Myself for Not Getting Drop-Down Menu Right

2004-09-20 Thread Matt Bathje
This is my point though - if what you posted is your entire listpages.jsp page (you haven't selectively cut/pasted) then your problem IS with the "anything" - you do not have an html:form tag wrapping your html:select, which is a nono. Since it can't find the form bean, it can't find the proper

Re: Hate Myself for Not Getting Drop-Down Menu Right

2004-09-20 Thread Caroline Jen
Hi, thanks for the reply. First, 'anything' is the property for the tag; therefore, 'anything' has nothing to do with my particular problem. Second, There is no problem with the database operation. Data are retrieved and can be displayed using the tag. Now, it is the drop-down menu. I have a

Re: Hate Myself for Not Getting Drop-Down Menu Right

2004-09-20 Thread Matt Bathje
Caroline - I have 3 suggestions. The first is to make sure that you are using the correct form name in your html:form, and that the form definition is setup correctly in struts-config. The error message you are getting seems (to me at least) suspiciously like it can't find a form property named

RE: Hate Myself for Not Getting Drop-Down Menu Right

2004-09-20 Thread Caroline Jen
I tried your way: <%@ taglib uri="/tags/struts-html" prefix="html" %> <%@ taglib uri="/tags/struts-bean" prefix="bean" %> <%@ page import="org.dhsinfo.content.PageBean" %> and my way: <%@ taglib uri="/tags/struts-html" prefix="html" %> <%@ taglib uri="/tags/struts-bean" prefix="bean" %>

RE: Hate Myself for Not Getting Drop-Down Menu Right

2004-09-20 Thread Amin Lalji
Try removing the bean:define And setting your line: to: HTH, Amin -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Monday, September 20, 2004 12:26 PM To: [EMAIL PROTECTED] Subject: Hate Myself for Not Getting Drop-Down Menu Right There is no problem with the