Re: OT: Image Submit button

2005-03-15 Thread Larry Lyons
I have another problem with a submit button. It works well as input type=submit and moves on to the next ten records, but when I change it to an image it seems to just refresh the page but not go to the next records. This works: input type=submit class=formitems value=Next 10

RE: OT: Image Submit button

2005-03-15 Thread Eric Creese
shouldn'e input type=image be input type=button -Original Message- From: Larry Lyons [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 15, 2005 9:58 AM To: CF-Talk Subject: Re: OT: Image Submit button I have another problem with a submit button. It works well as input type=submit

Re: OT: Image Submit button

2005-03-15 Thread Jared Rypka-Hauer - CMG, LLC
: Tuesday, March 15, 2005 9:58 AM To: CF-Talk Subject: Re: OT: Image Submit button I have another problem with a submit button. It works well as input type=submit and moves on to the next ten records, but when I change it to an image it seems to just refresh the page but not go

Re: OT: Image Submit button

2005-03-15 Thread Adrian Moreno
I have another problem with a submit button. It works well as input type=submit and moves on to the next ten records, but when I change it to an image it seems to just refresh the page but not go to the next records. If you output form.fieldnames, you'll see what the problem is. input

RE: OT: Image Submit button

2005-03-15 Thread kola.oyedeji
Which is why I mailed a few days asking what was the code on the action page doing as I suspected as much :) Kola -Original Message- From: Adrian Moreno [mailto:[EMAIL PROTECTED] Sent: 15 March 2005 17:04 To: CF-Talk Subject: Re: OT: Image Submit button I have another problem

Re: OT: Image Submit button

2005-03-15 Thread S . Isaac Dealey
or ... button type=submit id=imgSubmit/button #imgSubmit { background-image: path/to/image.jpg; } Granted, that with a button, you could just embed the image and make the style on the button transparent, i.e. button type=submit class=btnImage img src=path/to/image.jpg //button button.btnImage

Re: OT: Image Submit button

2005-03-15 Thread Jared Rypka-Hauer - CMG, LLC
I was assuming that class=formitems was supplying some sort of formatting to the form elements... only (duh) if it's an image button that's not going to matter. But I used that larger selector to insure that, since it's a form item, it receives the same class assignment that the rest of the form

Re: OT: Image Submit button

2005-03-15 Thread S . Isaac Dealey
Yea, I didn't really have any idea what the implementation in question was... I noticed you typo'd the css and use = instead of : ... didn't say anything about it 'cause I figured it was just a typo and likely the folks reading the thread are familiar enough with css to catch it rather than trying

Re: OT: Image Submit button

2005-03-15 Thread Jared Rypka-Hauer - CMG, LLC
Did *I* really do *that*??? No... no me. A typo? Actually, it's all those years typing HTML that gets me when I'm writing CSS... I find myself slipping into using = intead of : far too often... which is why I like things like TopStyle. Since I'm still all stuck on CFStudio (I like it best,

Re: OT: Image Submit button

2005-03-15 Thread S . Isaac Dealey
Did *I* really do *that*??? No... no me. A typo? Actually, it's all those years typing HTML that gets me when I'm writing CSS... I find myself slipping into using = intead of : far too often... which is why I like things like TopStyle. Since I'm still all stuck on CFStudio (I like

RE: OT: Image Submit button

2005-03-14 Thread Robert Orlini
Thanks Troy. It does not submit the value just refreshes though. Robert O. -Original Message- From: Troy Murray [mailto:[EMAIL PROTECTED] Sent: Friday, March 11, 2005 4:29 PM To: CF-Talk Subject: Re: OT: Image Submit button Try this instead for the button: button type=submit class

RE: OT: Image Submit button

2005-03-14 Thread kola.oyedeji
14:00 To: CF-Talk Subject: RE: OT: Image Submit button Thanks Troy. It does not submit the value just refreshes though. Robert O. -Original Message- From: Troy Murray [mailto:[EMAIL PROTECTED] Sent: Friday, March 11, 2005 4:29 PM To: CF-Talk Subject: Re: OT: Image Submit

Re: OT: Image Submit button

2005-03-11 Thread Micha Schopman
Robert, An input type image, defaults being a submit button. If you have set your form method to post, the image button will present itself as a submit button. If nothing works out, could you provide us with a small amount of code, maybe we can directly see were the problem is. Micha

Re: OT: Image Submit button

2005-03-11 Thread Barney Boisvert
I believe that image submit buttons don't pass a value, they pass the coordinates of the click on the image (for doing server-side image maps). So what's probably happening is the page you're submitting to is checking for a value of next 10, and since it's not there, it's just reloading the same

Re: OT: Image Submit button

2005-03-11 Thread Troy Murray
Try this instead for the button: button type=submit class=formitemsimg src=/images/next10.gif border=0 Next 10/button -t On Fri, 11 Mar 2005 14:19:39 -0500, Robert Orlini [EMAIL PROTECTED] wrote: I have another problem with a submit button. It works well as input type=submit and moves on to