Re: Problem with radioTag

2006-02-28 Thread OJAY78
Hi, I tried it with the idName property as described by Gary but it doesn't work. I get this Error No getter method available for property formID for bean under name org.apache.struts.taglib.html.BEAN It exists a Formbean for this action with the property formID and there are getter and setter.

Problem with radioTag

2006-02-27 Thread OJAY78
Hi, I have a table of data on my JSP and the User may choose one row. I want to do this with a Radiobutton and need the value of the choose radiobutton on my forwarded page. My Question is now how can I set the value of the radiobutton to a value from m

Re: Cannot find bean in scope Problem

2006-02-27 Thread OJAY78
Thanks, where should I send the box of chocolate? I bet a box of chocolates you forgot to define or badly defined the logic taglib in your .jsp header :) [EMAIL PROTECTED] a écrit : >Hi, > >I have a form with a List and want to show the values on my JSP. But when I >start my JSP the bean "id"

Cannot find bean in scope Problem

2006-02-24 Thread OJAY78
Hi, I have a form with a List and want to show the values on my JSP. But when I start my JSP the bean "id" cannot be found in any scopy. I dont understand why struts is looking for a bean "id" this is only my id value of the iterate tag of my JSP. Here is my JSP code:

AW: The best way to prepopulate a ActionForm

2005-09-22 Thread ojay78
you give a example Code for that? -Ursprüngliche Nachricht- Von: Rafael Nami [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 22. September 2005 19:36 An: Struts Users Mailing List Betreff: Re: The best way to prepopulate a ActionForm Best Regards Rafael Mauricio Nami 2005/9/22, ojay

The best way to prepopulate a ActionForm

2005-09-22 Thread ojay78
Hi @ all,   I stuck on a problem. I don’t now how to prepoulate a Actionform. What I’m doing is this:   On my showFVKNAdminAction I receive a value from the previous ActionForm and put it in the request so that the next handleFVKNAction have this value. I also put a attribute in the r

How to Debug my Struts Application + tomcat + myeclipse 4.0?

2005-09-21 Thread ojay78
[EMAIL PROTECTED], how can I debug my Struts application? I'm using myeclipse 4.0 for development and Tomcat 5.5.9? I'm new in Struts + tomcat development. Does anyone can give me a tutorial that shows me how to debug my webapp? Thanks OJAY

"javascript:void()" Problem

2005-09-10 Thread ojay78
  HI, What is with my a href wrong`? I tried several other solutions like _javascript_:void(0) or javscript:; but I get always a syntax error in the _javascript_ console. I tried it with firefox, IE and avant browser always the same failure   td class="button">   Thanks    

ActionForm Problem

2005-09-09 Thread OJAY78
[EMAIL PROTECTED] I have a problem with my Form Bean: On my jsp I have have a List of values and put them on my jsp with this code <%=lineNo.intValue()+1%> I get those values I want on my JSP. I tried to get those values into my ActionForm with indexed properties but it wont work

Re: Problem with Actionform

2005-09-02 Thread OJAY78
Thank you for your reply > What type are those properties? String, String[], List, or something > else? They type of the properties are String. > See if this helps... indexed properties are not my specialty, but I think > that's what you need: > >http://struts.apache.org/faqs/indexedprops

Problem with Actionform

2005-09-02 Thread OJAY78
HI, I have a Formbean from which I receive Data and put it in to my JSP site, this works fine. The data will be displayed in a table and two of the colums are input fields where the user should change the value. Here is a peace of my JSP <%=lineNo.intValue()+1%>