RE: html:image does not call the setter-method of the form

2001-09-21 Thread CARDON Denis
Title: RE: html:image does not call the setter-method of the form Hi Beat, When you post a form by clicking on a button, you only receive the coordinates where the user clicked the button as:   my_button_name.x=###   my_button_name.y=### but the browser does not post the value contained

Re: html:image does not call the setter-method of the form

2001-09-21 Thread Jan Sorensen
I believe that the HTML specification says that for an input of type image the value is not submitted to the server, instead the x- and y-coordinate of the click is submitted. The name of these parameters is name.x and name.y, where name is the name attribute of the element. I don't think the tag

Re: html:image does not call the setter-method of the form

2001-09-21 Thread Terence Jacyno
Hi. There are two solutions, depending on what you want to do. If you want to have an image map (i.e. you want to recover the coordinates of the image that was clicked), you can follow the directions for the image tag (http://jakarta.apache.org/struts/struts-html.html#image). However, if you ha