Re: [WSG] button name present and some CSS issues

2008-11-03 Thread Taco Fleur
Thanks Thierry,

Indeed the problem lies with IE6.

It gets worse though, Internet Explorer 6 has a further bug where it will
treat all button elements as successful controls, and submit their data to
the server, even if they were not clicked. This effectively makes using
multiple button elements impossible.

Back to using input type=submit buttons for now.

The *position: relative* trick also worked.

thanks a lot.

-- 
Kind regards,
Taco Fleur
clickfind™ - The new Australian Online Marketing Platform (OMP)
http://www.onlinemarketingplatform.com.au
http://www.clickfind.com.au


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***


[WSG] button name present and some CSS issues

2008-11-02 Thread Taco Fleur
Hello all,
 
I just published a site that has some strange behaviour.
 
As far as I know, the name of a submit button (name=) is only passed on to
the receiving end when that button is actually clicked. 
I've always worked that way, maybe I've always worked with input
type=submit and now that I'm using button I'm discovering that they
work differently? Would anyone be able to shed some light on this?
 
The problem is that on the server-side I check to see what button is present
and based on that I perform an action like going back for example. For some
reason in Internet Explorer ALL button names are now passed along when the
form is submitted.
 
http://gabba2.unidapsolutions.com.au/buy-now.cfm
 
 
Display issue, in Internet Explorer the continue button at the bottom of
the form is showing only partially. I've tried several things to get it to
display fully, does anyone have any suggestions here?
http://gabba2.unidapsolutions.com.au/buy-now.cfm
 
Thanks in advance
 
Cheers
 

Kind regards, Taco Fleur (CIO/CEO/Founder)

  _  

Find Australian businesses, products and services on
http://www.clickfind.com.au/ www.clickfind.com.au

www.onlineadvertisingplatform.com.au
http://www.onlineadvertisingplatform.com.au/  

Blog: http://australiansearchengine.wordpress.com
http://australiansearchengine.wordpress.com/ 

 

This email (which includes any attachments) has been sent on behalf of
Commerce Engine Pty Ltd or its Associated Entities (hereinafter called
clickfind). The information contained in this communication may be
privileged and confidential.  If you are not the intended recipient, any
use, disclosure or copying of this communication is expressly prohibited.
If you have received this E-mail in error, please delete it immediately.
Clickfind does not warrant or represent that this E-mail (including any
attached files) is free from electronic viruses, faults or defects.
Confidentiality and legal privilege are not waived or lost by reason of
mistaken delivery to you. For more information about use, disclosure and
access see our privacy policy at
http://www.clickfind.com.au/privacy-policy.cfm

 

P please consider the environment before printing this e-mail



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***

RE: [WSG] button name present and some CSS issues

2008-11-02 Thread Thierry Koblentz
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Taco Fleur
Sent: Sunday, November 02, 2008 6:09 PM
To: wsg@webstandardsgroup.org
Subject: [WSG] button name present and some CSS issues

Hello all,
 
I just published a site that has some strange behaviour.
 
As far as I know, the name of a submit button (name=) is only passed on to
the receiving end when that button is actually clicked. 
I've always worked that way, maybe I've always worked with input
type=submit and now that I'm using button I'm discovering that they
work differently? Would anyone be able to shed some light on this?
 
The problem is that on the server-side I check to see what button is present
and based on that I perform an action like going back for example. For some
reason in Internet Explorer ALL button names are now passed along when the
form is submitted.
 
http://gabba2.unidapsolutions.com.au/buy-now.cfm
 

Display issue, in Internet Explorer the continue button at the bottom of
the form is showing only partially. I've tried several things to get it to
display fully, does anyone have any suggestions here?
http://gabba2.unidapsolutions.com.au/buy-now.cfm





This should help regarding the first question:
http://www.dev-archive.net/articles/forms/multiple-submit-buttons.html

For the issue with the display of the button in IE6, try this:

#doSubmit {position:relative;}



-- 
Regards,
Thierry | http://www.TJKDesign.com






***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***