Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/06/2013, 15:55
wilmer30
 
Fecha de Ingreso: enero-2010
Mensajes: 491
Antigüedad: 14 años, 9 meses
Puntos: 12
duda con un ejemplo jqueryUI

Hola:

Deseo aplicar los ejemplos del JQueryUI, en mi proyecto pero me encuentro con este problema, modifiqué el ejemplo de http://jqueryui.com/dialog/#animated así:
Código HTML:
Ver original
  1. <html lang="en">
  2. <meta charset="utf-8" />
  3. <title>jQuery UI Dialog - Animation</title>
  4. <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
  5. <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  6. <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
  7. <link rel="stylesheet" href="/resources/demos/style.css" />
  8. $(function() {
  9.     $( "#dialog" ).dialog({
  10.         autoOpen: false,
  11.         modal: true,
  12.         buttons: {
  13.             'Guardar': function(){
  14.                 alert('funciona');
  15.                 $.post("animated_reformuled.html",function(){
  16.                         $("#contenido").load("#wtable");
  17.                     })
  18.                 $( this ).dialog( "close" );
  19.             },
  20.             Cancel: function(){
  21.                 $(this).dialog("close");
  22.             }
  23.         }
  24.     });
  25.  
  26.     $( "#opener" )
  27.         .click(function() {
  28.         $( "#dialog" ).load("anima_help.html #contenido").dialog( "open" );
  29.     });
  30. });
  31. </head>
  32. <div id="contenido">
  33.     <div id="dialog" title="Basic dialog"></div>
  34.     <div id="wtable">
  35.         <button id="opener">Open Dialog</button>
  36.     </div>
  37. </div>
  38. </body>
  39. </html>
el anima_help.html es asi:
Código HTML:
Ver original
  1. <div id="contenido">
  2.     <div id="wtable">
  3. <p class="validateTips">All form fields are required.</p>
  4. bla bla bla
  5. </div>
  6. </div>
el problema es que cuando intento abrir el dialogo por segunda ves simplemente no abre, en la primera ves me aparece un warning
Cita:
El uso de getAttributeNode() está desaprobado. Use en su lugar getAttribute().
[Parar en este error]
var attr = elem.getAttributeNode("type");
en la segunda ves que pulso el boton me da este error:
Cita:
Error: cannot call methods on dialog prior to initialization; attempted to call method 'open'
[Parar en este error]

throw new Error( msg );
Alguien me podria ayudar por favor?

Última edición por wilmer30; 03/06/2013 a las 16:01