Ver Mensaje Individual
  #8 (permalink)  
Antiguo 07/04/2009, 08:07
Avatar de willyfc
willyfc
 
Fecha de Ingreso: octubre-2008
Ubicación: Santa Cruz - Bolivia
Mensajes: 662
Antigüedad: 15 años, 7 meses
Puntos: 40
Respuesta: Cuadro Sobrepuesto en IE (en firefox va perfecto)

tendrías que hacerla tu, sería lo más fácil y rápido, aquí te pongo un ejemplo rápido, puedes optimizar la función:

Código html:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="es-es" xml:lang="es-es">
  3. <style type="text/css">
  4. <!--
  5. #contenedor{ width:500px; height:500px; background-color:#fff; border:1px solid #000;}
  6.  
  7. -->
  8. <script type="text/javascript">
  9. function ocultar()
  10. {
  11.     var s1 = document.getElementById("s1");
  12.     var s2 = document.getElementById("s2");
  13.     var s3 = document.getElementById("s3");
  14.     if ((s1.style.display == "block") && (s1.style.display == "block") && (s3.style.display == "block"))
  15.     {
  16.         s1.style.display = "none";
  17.         s2.style.display = "none";
  18.         s3.style.display = "none";
  19.     }
  20.     else
  21.     {
  22.         s1.style.display = "block";
  23.         s2.style.display = "block";
  24.         s3.style.display = "block";
  25.     }
  26. }
  27. </head>
  28. <div id="contenedor">
  29. <a href="#" onClick="ocultar();">ocultar</a><br />
  30.  
  31. <select id="s1" style="display:block">
  32. <option>Seleccione</option>
  33. <select id="s2" style="display:block">
  34. <option>Seleccione</option>
  35. <select id="s3" style="display:block">
  36. <option>Seleccione</option>
  37. </div>
  38. </body>
  39. </html>

y llamas a la función en donde llamas al calendario, y la vuelves a llamar cuando el calendario se cierre y la puedes ocupar no se en un vínculo o un input, en lo que estes usando para el calendario

o también podrías utilizar en vez display el visivility
__________________
WFC
codigo82