x,y coordinate location

2003-10-12 Thread Das, Amar
Hi, The struts documentation says that "The property name of this image tag. The parameter names for the request will appear as "property.x" and "property.y", the x and y representing the coordinates of the mouse click for the image. A way of retrieving these values through a form bean is to define

Problem with tags

2003-10-08 Thread Das, Amar
Hi, The following JSP page results in error in Tomcat 4.1.24. Error - Generated servlet error: [javac] Since fork is true, ignoring compiler setting. [javac] Compiling 1 source file [javac] Since fork is true, ignoring compiler setting. [javac] C:\ApacheGroup\Tomcat4.1\webapps

RE: image property

2003-09-08 Thread Das, Amar
doing is done in this bean. Here is the documentation: http://jakarta.apache.org/struts/api/org/apache/struts/util/ImageButtonBean. html HTH, Peter -- Peter Smith Software Engineer InfoNow Corporation > From: "Das, Amar" <[EMAIL PROTECTED]> > Reply-To: "Struts

RE: Failing to get an answer,can it be done?

2003-09-08 Thread Das, Amar
uff in the constructor? > >From your example, I also assume you retrieved the MapForm object from the session in the proper scope? -Original Message- From: Das, Amar [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 4:37 PM To: 'Struts Users Mailing List' Subject: RE

image property

2003-09-08 Thread Das, Amar
Hi, The struts documentation of attribute "property" for image tag says that "The property name of this image tag. The parameter names for the request will appear as "property.x" and "property.y", the x and y representing the coordinates of the mouse click for the image. A way of retrieving these

RE: Failing to get an answer,can it be done?

2003-09-05 Thread Das, Amar
Thanks. But it is not working. In my form bean (MapForm) I am setting the following variable public class MapForm extends ActionForm { /* Map Source*/ private String mapSource="http://geo.tpmc.com/output/dqs_GEO2056217212.jpg";; . public MapForm(){ try {

Failing to get an answer,can it be done?

2003-09-05 Thread Das, Amar
Hi, Is it possible to set the src URL of an input image tag in the action form? For example, how can I assign a URL dynamically to the src attribute of an input tag of type image? Thanks - To unsubscribe, e-mail: [EMAIL PR

populating input tag of type image

2003-09-05 Thread Das, Amar
Hi, I am using the following input tag in my html:form. How can I populate this input image in the associated Action Form? I am using the following method, but it is not working. public void setMapSource() { this.mapSource = map.getMapOutput().getURL(); } Thank you, Amar ---

RE: WELCOME to struts-user@jakarta.apache.org

2003-09-04 Thread Das, Amar
Hi, I am using the following image tag in my JSP page (map.jsp) inside a form. When I invoke the JSP page in a browser, the src should be populated with an URL for map image (http://../map1.jpg). But it does not. Please help. The form bean and action class and their mapping are shown below.