Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

IE issue with CF inputs

Guest
Oct 05, 2010 Oct 05, 2010

I have a very simpleCF input:

                    <label for="login_id">Account ID:</label>
                    <cfinput type="password" size="25" name="login_id" />

My issue is, whenever I change the TYPE to TEXT, so the user can see what they are typing, the length of the text box in Internet Explorer gets shorter. I can't figure out why this is happening. It ends up messing up my wntire GUI. All I am changing is the type.

In Firefox, this change does nothing.

Has anyone experienced this with IE? Is there a fix for this?

543
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Oct 05, 2010 Oct 05, 2010

What if you style it with CSS instead of with the SIZE attribute?

--

Adam

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Oct 05, 2010 Oct 05, 2010

Im kinda just fixing this for the developer, this isnt really my app so i dont have the rights to make that type of change.

IE is killing me.


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Valorous Hero ,
Oct 05, 2010 Oct 05, 2010

JasonMichalak wrote:

Im kinda just fixing this for the developer, this isnt really my app so i dont have the rights to make that type of change.

IE is killing me.


Then you are probably just gonna have to chalk this up to the varagies of IE and move on.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Oct 05, 2010 Oct 05, 2010
LATEST

Based on my experience with the beta version of IE9, I doubt things are going to get better anytime soon.

MOST browsers try to adhere strictly to the standards.

Then there is Microsoft who seems to think that IE is, by definition, the standard.

So, if you code to the HTML standard, you are probably going to tick off what is currently your largest browser group, IE.

The solution, as stated, is to perfect your code in a CSS manner.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Valorous Hero ,
Oct 05, 2010 Oct 05, 2010

JasonMichalak wrote:

Has anyone experienced this with IE? Is there a fix for this?

Yes, or behaviour very much like it.

The fix is to NOT rely on IE's (or any browser's) default CSS sytling of html page elements.  Specify your own very specific CSS paramters for any page element that is critical to a tight UI layout.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources