Click to See Complete Forum and Search --> : input type="image" not working


angrytuna
03-20-2003, 03:56 PM
Hi all,

Having a bit of difficulty. I'm trying to make a grid of images inside of a form tag, so that when you click a particular image, the page refreshes with the image selected blown up from thumbnail to normal proportions on a different part of the screen. The tag for any given image in the form is:

<input type="image" src="<%=results[index]%>" name="choice" width="50" height="50>

"results", in this case, is a Java String array, and the above call outputs a URL to the src tag. This code works like a champ for instantiating the images onto the document, but the clicking portion works for some machines and not others.

When outputting the value of "choice"(on this machine), I'm getting nothing. It's as if the variable is being completely ignored by the submission.

Any ideas? Is there an easier way to do what I'm trying to do?

Thanks in advance,
AT

pyro
03-20-2003, 04:12 PM
I would do it like this: <a href="<%=results[index]%>"><img src="<%=results[index]%>" name="choice" width="50" height="50></a>

angrytuna
03-20-2003, 04:33 PM
That's a good solution, except I'm trying to reload it into a div tag elsewhere in the same page. I've got a JSP script that loads all POST variables upon page load, and my div tag resembles this:

<div id = "mydiv" style="position:absolute" (yada yada yada...)>
<img name="myimage" src="<%=currentSession.getValue("choice")%>">
<%=currentSession.getValue("choice")%>
</div>

where currentSession is an HttpSession.
The second line should print out the value of the "choice" name->key pair, but I'm getting nothing. The form tag I'm using looks like so:

<form action="myPage.jsp" method="post" target="_self">

<%for (int index = 0; index < results.length; index++){%>

<!--Many of these form elements-->
<input type="image" src="<%=results[index]%>" name="choice" value="<%=results[index]%>" width="50" height="50">

<%}//close for loop...%>

</form >

Thanks for your help so far...any other ideas?

AT