RE: Struts Bug? My Bug? Help!! Please!

2001-07-20 Thread Becky Moyer
submit and go to your actionClass, you can compare CheckboxNames to CHeckboxValues to see what was checked. Did that explain it enough? Hope it helps, Becky Original Message Follows From: Prashanth_Thm [EMAIL PROTECTED] To: Becky Moyer [EMAIL PROTECTED] Subject: RE: Struts Bug? My Bug

RE: Struts Bug? My Bug? Help!! Please!

2001-07-20 Thread Abraham Kang
Hi Becky, Did you override the reset () method of ActionForm? If you didn't you need to set the Attribute of your ActionForm object that represents the multibox to null. Like: public void reset(ActionMapping mapping, HttpServletRequest request) { this.action = Create;

RE: Struts Bug? My Bug? Help!! Please!

2001-07-20 Thread Becky Moyer
] To: [EMAIL PROTECTED] Subject: RE: Struts Bug? My Bug? Help!! Please! Date: Fri, 20 Jul 2001 14:07:44 -0700 Hi Becky, Did you override the reset () method of ActionForm? If you didn't you need to set the Attribute of your ActionForm object that represents the multibox to null. Like