ValidationTextField in IE6 IE7 problem...

hi agian,
as explained in my
previus
post regarding the "ValidationTextField problem" if i set the
textfield values by javascript, the same problem occurs in IE 6 and
IE 7 if you click on the RESET button and then make changes in the
textfield (Title) .
The first entry in Textfields does not validate!!
pls try it with the original forms validation sample:
http://labs.adobe.com/technologies/spry/demos/formsvalidation/index.html
is there a "workaround" for this problem?
regards
herbert

hi john,
if you type something in the title field when theform is
loaded, everything works fine.
but after clicking the reset button, if you type something in
the title field, the validation starts on 2nd keystroke.
IE 6 and IE 7.
@dragos
thanks, i think this bug was traceable for you
regards
herbert

Similar Messages

  • ValidationTextField in IE6 IE7 problem, 1st keystroke ignored

    hi,
    i have a very interesting problem with "ValidationTextField"
    in IE6 and IE7.
    the validation on textfiels starts at 2nd keystroke, the
    first keystroke in the field is ignored,
    if iset the values by javascript like
    $('theMovieTitle1').value = $('theNewText1').innerHTML;
    $('theMovieTitle2').value = 'Hallo ';
    $('theMovieTitle3').value = 'Hallo ÖÄÜ';
    $('movieDescription').value = 'Austria Österreich
    Fräulein ';
    hmm??
    you can see/test it here:
    http://www.startup-service.com/Spry/demos/formsvalidation/testvalidate.html
    thanks
    herbert

    I don't see that behaviour on your example in IE7 or Firefox.
    If i highlight the text in the field and then begin typing the
    validation occurs immediately
    Can you explain how you are seeing it so i can try to
    recreate?

  • Bug or Feature? Different behavior after 1.6.0_02 in both Firefox & IE6/IE7

    Greetings,
    I have been testing a small java applet for a phpbb mod, named Proxy Revealer
    Basically the java applet "phones home" (connects back to the http host serving the applet) via a Socket connection to establish a direct connection, then basically writes a custom HttpRequest string with some parameters passed to it from the php script's HTML, so it looks like:
    GET /probe.php?mode=java&ip=initial_external_ip&extra=random_unique_identifier&local=LAN_IP&vendor=java_vendor&version=num&user_agent=browser
    which would allow the php script on the host/site to verify the client's IP address, and compare it with the initial IP that requested the page which loaded the applet, as well as Internal LAN IP if user is behind a router/NAT
    This allows the php script to unmask & log proxied users for security purposes, in case of spamming/trolling on the forum, in an attempt to thwart the average spammers/trollers at the least.
    The applet and the code works as desired and in various browsers, but only on JRE 1.6.0_02 and earlier releases...
    It seems ever since JRE 1.6.0_03, this has stopped working when the end-user has HTTP Proxy configured in the browser.
    I tested latest JRE as of date, ver 1.6.0_07, with IE6, IE7 & Firefox 2.0.0.15 and 2.0.0.16 and it still exhibits this odd behavior.
    This is what appears in Java Console when I try to visit the page serving this applet with an HTTP proxy configured in browser:
    java.security.AccessControlException: access denied (java.net.SocketPermission xxx.xxx.xxx.xxx:80 connect,resolve)
    xxx.xxx.xxx.xxx is the resolved IP of the server host that is hosting the applet, so basically the same origin....
    If I disable the HTTP Proxy configured in the browser, the applet connects back fine. So it only happens when HTTP Proxy is configured in browser..
    Is this a new feature or a bug??
    Here's the java applet code:
    // httpRequestor.java
    // Copyright (c) MMVI TerraFrost
    // Licensed under the GPL.
    import java.applet.*;
    import java.net.*;
    public class HttpRequestor extends Applet
         public void start()
              try
                   String javaVendor = System.getProperty("java.vendor");
                   String javaVersion = javaVendor.startsWith("Microsoft") ? System.getProperty("java.version") : System.getProperty("java.vm.version");
                   Socket sock = new Socket(getParameter("domain"), Integer.parseInt(getParameter("port")));
                   String path = getParameter("path")+"&local="+sock.getLocalAddress().getHostAddress()+
                        "&vendor="+URLEncoder.encode(javaVendor, "UTF-8")+
                        "&version="+URLEncoder.encode(javaVersion, "UTF-8")+
                        "&user_agent="+URLEncoder.encode(getParameter("user_agent"), "UTF-8");
                   String httpRequest = "GET "+path+" HTTP/1.0\r\nHost: "+getParameter("domain")+"\r\n\r\n";
                   sock.getOutputStream().write(httpRequest.getBytes());
                   sock.getInputStream();
              catch (Exception e)
                   e.printStackTrace();
    }and the relative portion from the probe.php script loading it:
              $java_url = $path_name . "probe.$phpEx?mode=java&ip=$client_ip&extra=$sid,$key";
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
      <title></title>
    </head>
    <body>
    <applet width="0" height="0" code="HttpRequestor.class" codebase=".">
      <param name="domain" value="<?php echo $server_name; ?>">
      <param name="port" value="<?php echo $board_config['server_port']; ?>">
      <param name="path" value="<?php echo $java_url; ?>">
      <param name="user_agent" value="<?php echo htmlspecialchars($HTTP_SERVER_VARS['HTTP_USER_AGENT']); ?>">
    </applet>
    </body>
    </html>A barebone/proof-of-concept demo (also employing a couple other tricks to detect CGI proxies in the same page):
    http://www.frostjedi.com/terra/scripts/ip_unmasker.php?mode=utf16
    Another similar java applet code (with demo) is found towards the bottom of this page:
    http://www.burghardt.pl/2008/05/web-browser-anonymity-threats/
    Both of these demos work with JRE versions 1.6.0_02 and older, but fail to work (in both IE & FF) with JRE 1.0.6_03 and newer - up to 1.0.6_07 which is latest as of date
    Thanks,
    Jasmine

    Thought I might elaborate on the details of the bug report I made, perhaps someone needs to add to it or needs to understand the problem better.
    Description:
    Unsigned applets cannot connect back via Socket to the originating host (from codebase) when a Proxy is configured in user's browser (IE7/IE6//FF3/FF2 tested) and when origin host's IP address doesn't resolve back to the same hostname.
    Example:
    www.hostingsite.com resolves to 1.2.3.4
    but, 1.2.3.4 resolves back to 4.3.2.1-somewebhost.com
    Affects JRE versions 1.6.0_03 - 1.6.0_07
    This wasn't a problem in 1.6.0_02 or prior versions according to my tests.
    An AccessControlException is thrown about SocketPermission:
    I believe the security manager is doing unnecessary lookups, even after the resolved IP matches to the IP of the origin host. This is apparent from the fairly long delay before the ACE is thrown about SocketPermission.
    Steps to Reproduce:
    1. Configure HTTP Proxy in browser (IE/Firefox)
    2. visit an html page that embeds a simple applet that tries to connect back to origin host whose hostname resolves to an IP address but the IP address resolves to a different hostname. (example code below)
    Expected Result:
    Applet should be able to connect back to originating host via Socket connection or write (post) to a URL on origin host (which requires a new Socket connection back)
    Actual Result:
    Socket sock = new Socket(Proxy.NO_PROXY);
    InetSocketAddress sockAddress = new InetSocketAddress(getCodeBase().getHost(), port);
    sock.connect(sockAddress);The above snippet of code would throw an ACE about SocketPermission when applet tries to initiate sock.connect
    Moreover,
    URL urlRequest = new URL(this.getCodeBase()+path);
    HttpURLConnection conn = (HttpURLConnection)urlRequest.openConnection(Proxy.NO_PROXY);
    conn.getOutputStream();would also throw an ACE about SocketPermission when the applet tries to initiate Socket connection for the conn.getOutputStream() call.
    Error Message(s):
    java.security.AccessControlException: access denied (java.net.SocketPermission x.x.x.x:80 connect,resolve)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkConnect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at HttpRequestor.start(HttpRequestor.java:16)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    x.x.x.x being the resolved IP address of the origin server
    Source code for an executable test case:
    import java.applet.*;
    import java.net.*;
    public class HttpRequestor extends Applet
         public void start()
              try
                   Socket sock = new Socket(Proxy.NO_PROXY);
                   InetSocketAddress sockAddress = new InetSocketAddress(getCodeBase().getHost(), Integer.parseInt(getParameter("port")));
                   sock.connect(sockAddress);
                   String path = getParameter("path")+"&local="+sock.getLocalAddress().getHostAddress();
                   String httpRequest = "GET "+path+" HTTP/1.0\r\nHost: "+getCodeBase().getHost()+"\r\n\r\n";
                   sock.getOutputStream().write(httpRequest.getBytes());
                   sock.getInputStream();
              catch (Exception e)
                   e.printStackTrace();
    Workaround:
    The only possible workaround I could find is if the the applet can be loaded from IP-address in the codebase URL to avoid the unnecessary lookups by the SecurityManger.
    This, however, maybe very difficult to use in most virtual-hosting environment, and IE browsers older than IE7 would most likely throw an error like "Class not found".
    Example, if www.hostingsite.com resolves to 1.2.3.4
    and http://1.2.3.4 goes to http://www.hostingsite.com
    Change the codebase URL in the html embedding the applet, from:
    "http://www.hostingsite.com/classes"
    to:
    "http://1.2.3.4/classes"
    I also forgot to mention in my bug report that this would also be quite a big problem in server farms, where the origin-hostname resolves to multiple IP addressses and when those IP addresses do not all resolve back to the same hostname.

  • Spry text fields "invisible" on ie6/ie7

    Hi, Attached is a screen shot of how spry text fields look in their initial state under ie6 and ie7 on a project at www.printingcommunication.com/wa/seattle/contact.html
    They are "invisible".
    I'm using Dreamweaver CS4 and spry 1.6.1. I have not made any modifications to the default spry yet. This works ok on every other browser. Does any one know what modifications I need to make to have these text fields show ok under IE6/IE7? Thanks...

    With all associated files (including the apparently interfering css file) linked, open the page in Dreamweaver.
    Make sure your CSS Styles Panel is open;
    select "Current" on that panel to get a look at the styles that are in play.
    In the bottom of the Styles panel, select the asterisk-asterisk-downarrow icon at the bottom left, so that you see only the styles in use.
    Then (if you have the option) select the right-hand cascade button...it looks like a little flight of stairs.
    Okay, in Design View, click on one of your input fields. Leave the cursor there and look over at the CSS Styles Panel. You will see the cascade of styles that are affecting that item. The lowest-most will be the most specific, but all that affect your item will show in a list.
    Make sure the bottom of the styles panel is opened up...you may have to drag it open if you haven't used it; close other panels below to make more room.
    You will see there all the attributes that have been defined for the particular style you are working with.
    This should help you to focus on what is exactly going on. The form tags come with their own styling, so you'll have to look for styles that explicitly state something like input {border: none;} You may need to step up the list (pausing to check the attributes list) to find the affecting style.
    By the same token, you can alter the styling as you wish, for instance:
    <style type="text/css">
    <!--
    input {
         border: solid 1px red;
    -->
    </style>
    Of course, if you are using Spry Validation Text Fields, you might not want to make them red, as I have done! They will have their own set of colors.
    I hope some of this helps your situation. If anything, it will let you get "up close and personal" with your CSS Styles Panel
    Z

  • IE6 & IE7 on the same PC

    hi:
    has anybody tried any of this approaches to run IE6 & IE7
    on the same PC?
    http://blogs.msdn.com/ie/archive/2006/11/30/ie6-and-ie7-running-on-a-single-machine.aspx
    http://labs.insert-title.com/labs/Multiple-IEs-in-Windows_article795.aspx
    jdoe

    Hugh Watkins wrote:
    > John Doe wrote:
    >
    >> hi:
    >>
    >> has anybody tried any of this approaches to run IE6
    & IE7 on the same PC?
    >>
    >>
    http://blogs.msdn.com/ie/archive/2006/11/30/ie6-and-ie7-running-on-a-single-machine.aspx
    >>
    >>
    http://labs.insert-title.com/labs/Multiple-IEs-in-Windows_article795.aspx
    >
    >
    > you can have a virtual machine to run legacy software
    >
    >
    http://www.parallels.com/en/
    >
    >
    > Hugh W
    >
    yes, virtualization seems to be the best approach, i'm
    planning to use
    Parallels in my MacIntel. for those using only Windows, the
    free VPC
    virtual machine image looks as a good option:
    "IE6 and IE7 Running on a Single Machine
    Many of you have asked how to run IE6 and IE7 in a side by
    side
    environment. As Chris Wilson blogged about early this year,
    it’s
    unfortunately not so easy to do. There are workarounds, but
    they are
    unsupported and don’t necessarily work the same way as
    IE6 or IE7 would
    work when installed properly. As Chris said, the best way to
    use
    multiple versions of IE on one machine is via virtualization.
    Microsoft
    has recently made Virtual PC 2004 a free download; we’ve
    taken advantage
    of that by releasing a VPC virtual machine image containing a
    pre-activated Windows XP SP2, IE6 and the IE7 Readiness
    Toolkit to help
    facilitate your testing and development. The image is time
    bombed and
    will no longer function after April 1, 2007. We hope to
    continue to
    provide these images in the future as a service to web
    developers.
    Now you can install IE7 on your main machine for development,
    and get
    all the advantages of IE7, like the RSS platform, native
    XMLHTTP stack,
    and improved security, while still running IE6 simultaneously
    in the VPC
    on the same computer. Most importantly, you don’t even
    have to buy an
    additional Windows license. The VPC image runs in a virtual
    machine that
    offers all of the functionality of a full IE6 installation
    without
    giving it any access to its host machine’s hard drive,
    registry, etc.
    You can make as many modifications as you want to the virtual
    machine
    without affecting your host installation at all.
    Included in the VPC image are:
    Windows XP Professional SP2 + high-priority fixes through
    November 2006
    Internet Explorer 6.0
    Internet Explorer 7 Readiness Toolkit 2.0
    While we’ve released a VPC image today with Windows XP
    SP2, we’re also
    investigating creating other VPC images, for example IE5,
    IE5.5, IE6 and
    IE6 SP1, as well as versions of IE on different language
    operating systems.
    Get more information on Virtual PC 2004
    Download Virtual PC 2004
    Download the Internet Explorer 6 Testing VPC Image
    One more note - VPC 2004 doesn’t run on Windows Vista,
    but this image
    will work fine with VPC 2007, which is in beta now. You can
    get this
    free beta via Connect.
    Happy testing!
    PEte LePage
    Product Manager"

  • IE6 (not IE7) problem with menubar

    I have found a lot of topics discussing Spry menubar
    probblems on IE browsers, but I have not been able to find the
    exact issue I have.
    I he created a Spry menubar (without any css o js
    modifications) using the buttons of Dreamweaver (really simple
    procedure no place for mistakes). It displays well in Firefox and
    IE7, but it does not in IE6. Using that browser the menu does not
    appear in the possition is supposed to be and moves freely all over
    the page when you rollover it or scroll the page.
    I believe the solution for this problem is very simple once
    you know it, so if anyone knows how to solve this issue I will be
    bery gratefull.

    HI and welcome to Apple Discussions...
    Try deleting this file.
    com.apple.systemiuserver.plist
    ~/Library/Preferences.
    Move that file to the Trash and restart your Mac.
    If you need help finding .plist files and their paths... go here.
    http://web.me.com/carolynssamit/CarolynsMac_Blog/Path_for_.plistfiles.html
    Carolyn

  • XML Dataset whit spry:if works in IE8 but not in IE6,IE7 and IE9

    Hello,
    I have bigs problem with my site created using SPRY framework and the filters functions.
    My pages works properly in IE8, Safari, firefox, chrome, ecc but not in IE6 and IE7.
    In IE9 works only in "compatibility mode"
    This page is an example:
    http://www.digidevice.com/P_IT/IT-Prodotti01.html
    in the browser ok there is a list of items, in the other that don't works there is only a void rectangle.
    In this page one example with code depured by formatting:
    http://www.digidevice.com/P_IT/IT-Prodotti01_PROVADATASET2.html
    Thanks in advance

    Hi, i have a similar problem..
    These URL returns a XML:
    1) http://www.bolsadesantiago.com/intradayServlet?symbol=IPSA
    2) http://www.valorfuturo.com/contenidos_vf/proyectos/clientes/penta/titularnoticias.asp
    I use a CS4 and both works in preview, but only first works over internet (IE7).
    I suspect that 2° has a problem of syntax XML, but work with jQuery.

  • IE7 problem with PI7

    Hello,
    I would like to thanks all SDN members to complete my PI installtion . Though i am new to this installation, with guides and you, i could able to manage.
    Below are the steps i followed:
    1. Installtion done with SAPinst ( PI70, 2004s SR1)
    2. followed NW70 SR1 abap+java guide with MaxDB on windows guide.
    3. Done local SLD configuration step 5.19 as per as guide <b>before running template installter.</b> to assign PIAPPLUSER ro sld* assing role in visual admin.
    I believe this step for the PI instance to communicate with SLD.
    Now i tried to login to --> host:port/nwa with IE7
    here i got problem, it is giving error.
    Is PI7 is not compatible with IE7. or do i have to do any security settings for this.
    But i can able to access with IE6 from other XP machine and manage to run template installer.
    Thanks in advance for ur help,
    Srinivas

    Not just Template Installer but all WebDynpro based applications, up to NW 7.0 SP9, had this problem. From SP10, it has been corrected. Just so you know, SR1 is based on SP6 .
    https://service.sap.com/sap/support/notes/991449
    My sugestion is: finish your installation with IE6 from another machine and, once you're finished, patch your system up to SP12 or SP13.
    Regards,
    Henrique.

  • JRE, vista and IE7 problems

    Java does not seem to run on IE7 except on microsoft's websites. The verify of installation on the Sun java website failed as well. I could not see any applet running. However, with other broswers such as firefox and opera, java worked perfectly. I updated my IE and JRE as well, but the problem was not solved.
    I had already enabled the scripting under security, the plug ins in the
    manage add-ons and under advance, java sun was enabled as well. My internet security settings is set to default.
    I found out that the problem was caused by UAC. After disabling that troublesome device, java could be activated again. Is this a bug in java or in UAC?
    Is there any other way besides disabling UAC or having IE7 protected mode : off?
    Any solutions please?
    Vista home premium
    Nod32
    spybot search and destroy
    spywareblaster
    Windows defender

    I'm having the same problem with IE7 running on XP SP2. All web sites that i visit the require JRE (Morningstar, Schwab, Marketedge, Sun Java Verify Site) return 'Jave Plug-In Fatal Error: Several JVMs running the same process caused and error. I'm running JRE 1.5.0_06. I've tried uninstall/reinstall of IE7 with no change. No problems running JRE on IE6 or Netscape. Does anyone know of any progress on this issue?

  • IE7 problem displaying page background correctly

    Has anyone noticed that when one uses a "Tinted Image Fill" for a page background, Internet Explorer 7 will move the left margin of the page background to the left such that the page does not display properly (this was not a problem in IE6). Other images on the page however do display properly, and if one of these other images was right up against the left margin of the page, it actually looks like it extends off the page. Here's an example (notice how the top image with the logo and name seem to extend beyond the left margin):
    http://web.mac.com/rkuhnhenn/iWeb/Images/ie7clip1.jpg
    The link below is how the page should properly display; it is also in IE7 after I found a "fix" by deleting this 2nd line of code in the html:
    <!-- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -->
    http://web.mac.com/rkuhnhenn/iWeb/Images/ie7clip2.jpg
    My question is does anyone know if there is a problem with deleting that line of code? I've not noticed any problems with other web browsers either with or without that line of code. I'll let MicroSoft know about this too, as if they'll care!
    Thanks,
    Bob
    20" iMac G5   Mac OS X (10.4.8)   1.8 GHz PowerPC G5; 1 GB RAM & 15" 2.16 GHz MacBook Pro

    I've seen this reported, not sure if it was here or not, but that's some strange behavior! I'd think a happier solution would be to render the tinted image fill as a plain old .jpg. That way you won't have to remove any lines from your code.
    If you have a regular image, does it also exhibit this behavior?

  • Cfinput datefield gives wrong display in IE6 IE7

    With CF8, I try cfform=html with cfinput type=datefield. When
    I use 2 input dates, and click on the calendar image, the opened
    calendar window appears behind the second cfinput. You can check
    the result here :
    datefiled.pdf
    The code is quite simple :
    <cfform action = "cfinput.cfm">
    <p> </p>
    <cfinput type="datefield" name="MyDate1"
    firstDayOfWeek="1">
    <p> </p><p> </p>
    <cfinput type="datefield" name="MyDate2"
    firstDayOfWeek="1">
    <p> </p>
    <input type="Submit" name = "" value="Submit">
    </cfform>
    The display problem appears in IE6 and IE7, but not in
    Firefox. Is this a bug, or any workaround is already know ?
    Thanks.
    Firmus.

    <input type="Submit" name = "" value="Submit">
    corrected to: <input type="Submit" name = "sbmt"
    value="Submit">
    > Is this a bug
    Seems so. You should report it.
    i suspect the likely cause to be the z-index value.
    Z-index
    is a CSS property. It determines one element's stack order in front
    of or behind another. An element with a higher z-index will be
    stacked in front of one with a lower value. The default value is 0,
    for example, in the case where you don't specify the z-index.
    To see the relevance to your case, open in Internet Explorer
    a page containing just the form. View the source code. The
    Coldfusion engine has automatically arranged the HTML within the
    form into two main DIV blocks, each containing other DIVs. You will
    notice that neither of the two main DIV blocks has z-index in its
    style attribute. It means that they have the same z-index value,
    namely, the default value 0.
    The calender image at the top has the same z-index value as
    the input field at the bottom, namely, the default value 0. One
    would naturally expect that order of appearance would be the
    deciding factor. Apparently, order of appearance is important in
    Mozilla but not in Internet Explorer. It seems that, if two
    elements have the same z-index, Internet Explorer may show the
    second one in front of the first.
    >... any workaround ...
    Yes, here is one:
    <cfform action = "cfinput.cfm">
    <div class="df1" style="position:relative;">
    <p> </p>
    <cfinput type="datefield" name="MyDate1"
    firstDayOfWeek="1">
    </div>
    <div class="df2" style="position:relative;z-index:-1;">
    <p> </p><p> </p>
    <cfinput type="datefield" name="MyDate2"
    firstDayOfWeek="1">
    </div>
    <div class="sbmt">
    <p> </p>
    <cfinput type="Submit" name = "sbmt" value="Submit">
    </div>
    </cfform>

  • Sliding panels IE6/IE7 inconsistency

    Hello,
    I am using a customized version of the Spry "Products" demo
    for our website. I have difficulties keeping the Spry sliding
    panels next to the product list. In IE6 it will move below the list
    when certain content is selected in the sliding panels.
    http://www.isis-papyrus.com/e/pages/1/2/products.html
    It happens in IE6 (Windows XP) when for example "Papyrus
    Designer" is selected and the "Features" panel is displayed.
    It works as advertised in IE7, Firefox, Safari and on all Mac
    browsers.
    Would anyone have an idea how I can prevent this from
    happening?
    Thank you for your help,
    Oliver
    PS: I enjoy working with Spry very much and appreciate all
    the effort that goes into this on Adobe's side.

    Hi,
    I have tried the page in IE7 and IE8 without any problem. I am assuming that the problem lies within the section called Otros tratamientos.
    Ben

  • (css) ie6 ie7

    Hola foreros buenos dias, os cuento mi problema, tengo una
    web con una css que en ie6 se ve way pero cuando lo abro con ie7 un
    menu se sobrepone sobre otro, la web en cuestion es
    www.carabeovillas.com , se que existen algunos js que eliminan
    estos errores pero no los encuentro, espero vuestras ayuditas.
    ciao!!

    Si es cuestión de posicionamiento puedes hacer lo
    siguiente, que te ilustro con
    un ejemplo.
    div#tu_elemento
    position:absolute;
    width: 100px ----> Para todos los navegadores
    .width: 110px ---> Para todos los Explorer (6 y 7)
    _width: 120px --> Para Explorer 6
    "Sergio_Sx1" <[email protected]>
    escribió en el mensaje
    news:f5vsfr$sej$[email protected]..
    Hola foreros buenos dias, os cuento mi problema, tengo una
    web con una css que
    en ie6 se ve way pero cuando lo abro con ie7 un menu se
    sobrepone sobre otro,
    la web en cuestion es www.carabeovillas.com , se que existen
    algunos js que
    eliminan estos errores pero no los encuentro, espero vuestras
    ayuditas. ciao!!

  • IE6 applets problems

    Hello everybody.
    I have a problem with some applets developed with Eclipse 3.2 that I have created for a web application that works with IE6. Here is the problem:
    When I run the applet with the IE7, the jvm 1.5.0 with the build 1.5.0_11-b03 and with this tag...
    <applet code="form_reports.class" width=750 height=275 align="middle">
    </applet>
    ... the applet runs.
    But if I run this tag with IE6 and the same jvm, it doesn't show nothing, and the jvm console give me this error:
    Exception in thread "Thread-2" java.lang.IllegalArgumentException
    at sun.net.www.ParseUtil.decode(Unknown Source)
    at sun.net.www.protocol.file.Handler.openConnection(Unknown Source)
    at sun.net.www.protocol.file.Handler.openConnection(Unknown Source)
    at java.net.URL.openConnection(Unknown Source)
    at sun.applet.AppletPanel.getAccessControlContext(Unknown Source)
    at sun.applet.AppletPanel.getClassLoader(Unknown Source)
    at sun.applet.AppletPanel.createAppletThread(Unknown Source)
    at sun.applet.AppletPanel.init(Unknown Source)
    at sun.plugin.AppletViewer.createClassLoader(Unknown Source)
    at sun.plugin.AppletViewer.appletInit(Unknown Source)
    at sun.plugin.viewer.LifeCycleManager.initAppletPanel(Unknown Source)
    at sun.plugin.viewer.IExplorerPluginObject$Initer.run(Unknown Source)
    Does anybody know why? What should I do to let IE6 show the applets?
    Could be the problem that I complied the .class with eclipse 3.2 and IE7?
    I have tried to change the applet tag for the object one and if I do this it doesn't work in IE6 and IE7 either.
    Thank you very much.

    this also means you can't view any applets on the web with IE6. So get another browser (netscape is a lame browser, but very java friendly). Or you can use the command line like so:
    appletviewer <url>One way I forced my IE6 to use 1.4 plugin with the <applet> tag is to install the 1.4 plugin while IE5 is installed, then install IE6. I don't know if this works for everyone though...

  • Only seeing Blank Pages for IE6 & IE7

    Currently testing a site in development and this is my first try of Browser Lab, and am getting blank views for IE6 and IE7.
    I am using the online version (not through Dreamweaver).
    Any suggestions on how to get it to work?
    Thanks Steve.

    Hi steve@mcpd,
    Thank you for your interest in BrowserLab.  We are currently looking into a similar issue another customer has encountered, but have not established a root cause.  If you don't mind sharing, I'd be grateful if you would Private Message me the URL that you are testing (so far the problem seems to be specific to a certain type of web server or domain name convention).
    Regards,
    Josh

Maybe you are looking for

  • FI-AP Tax Code not considering the excise duty while calcuating the VAT

    Sub: A/P Tax Code not considering the excise duty while calcuating the VAT Hi Frnds. I have a typical problem. Till now we are using a "W6" as a tax code, where Excise-10%, Ed Cess-2%, SEd Cess-1% and VAT-4%. But as the Govt. rules changed I have cre

  • Microsoft Excel has encountered a problem and needs to close

    I've been using Microsoft Office 2008 for a long time and just this week I'm getting the below message: "Microsoft Excel has encountered a problem and needs to close. Sorry for the inconvenience." I can't open it at all. Word works fine. I've deleted

  • Line colour

    --- I use Forms 6 --- Hello, Is it possible to change colour of a line compared to an item value ? For example, I have a Status Item => When status is "actived", the line (exactly, the text of different text items contained in this line) is in red, a

  • BSP COMPILER & Table view  ITERATOR

    Hi Gurus,    Can any  body give the follwing details 1.What is BSP Compiler? 2.What is Table view iterator? Thanks in Advance, Regards, Ravi.

  • [ER] af:showPopupDialog / within af:selectOneChoice / editor complaints

    Hi, I'm using <af:showPopupDialog triggerType="valueChange" /> within <af:selectOneChoice /> to open up a popup when the user changes value in the drop down box. This works great at runtime, however the JDeveloper (TP3) jspx editor complains that <af