On Mon, 2002-11-04 at 14:05, Jason Hildebrand wrote: > In a nutshell: > > -if you have a single text field in your form, IE doesn't send the > name/value of _any_ submit button. Sean's suggestion will work here. > > -if you have two or more text fields, IE sends the name/value pair of > the _first_ submit button in the form, so adding a hidden field would > have no effect.
So in general you have to determine a default button, make it the last item returned by actions(), and make sure its the first button in the form. We should be sure to put that in the documentation. Only the first-button thing is more than a inconvenience, since it actually forces you to structure the form in a certain way. You could use the Javascript onClick for that button to distinguish between implicitly including it, and having it actually be hit. Bit of a pain, though. Ian ------------------------------------------------------- This SF.net email is sponsored by: ApacheCon, November 18-21 in Las Vegas (supported by COMDEX), the only Apache event to be fully supported by the ASF. http://www.apachecon.com _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
