Re: struts buttons to invoke actions

2007-07-30 Thread Session A Mwamufiya
I knocked myself in the back of the head, because the issue was that the frameset tags I used to set the frames was referencing pages directly and not actions. It now works. Thanks for the help guys, Session > Your approach seems fine. > > See if you can access "CategoryEditor.action" direct

Re: struts buttons to invoke actions

2007-07-30 Thread Ravikanth BV
Hi, If you are getting the warning that the tag doesn't exists, please check whether you have included the tag library definition in jsp. Thanks, Ravikanth On 7/28/07, Session A Mwamufiya <[EMAIL PROTECTED]> wrote: > > Hi, > > I use the following code to display a list of buttons that are sup

Re: struts buttons to invoke actions

2007-07-29 Thread Jeromy Evans
Your approach seems fine. See if you can access "CategoryEditor.action" directly using the browser. If not, the action name is incorrect. Have you confirmed that its actually posting a request? Also the logging and debugging interceptor for more insight. Session A Mwamufiya wrote: Hi, I use

RE: struts buttons to invoke actions

2007-07-29 Thread Session A Mwamufiya
; -Original Message- From: Session A Mwamufiya > [mailto:[EMAIL PROTECTED] Sent: Fri 7/27/2007 9:54 PM To: > user@struts.apache.org Cc: Subject: struts buttons to invoke actions > > Hi, > > I use the following code to display a list of buttons that are suppos

RE: struts buttons to invoke actions

2007-07-28 Thread Himanshu Ranavat
- From: Session A Mwamufiya [mailto:[EMAIL PROTECTED] Sent: Fri 7/27/2007 9:54 PM To: user@struts.apache.org Cc: Subject: struts buttons to invoke actions Hi, I use the following code to display a list of buttons that are supposed to call their associated actions wh

struts buttons to invoke actions

2007-07-27 Thread Session A Mwamufiya
Hi, I use the following code to display a list of buttons that are supposed to call their associated actions when pressed: None of the actions seem to be called (I use log4j logging to determine whether the execute() method in each of them is ever called; but it never is). I