]> git.llucax.com Git - z.facultad/75.52/sercom.git/blobdiff - sercom/subcontrollers/ejercicio/__init__.py
faltaba tirar un error
[z.facultad/75.52/sercom.git] / sercom / subcontrollers / ejercicio / __init__.py
index 8a8a7ab1d4fa8f17a687cccfeb691dd43fdc74fa..c7118d7213c36b45e73983cfb1ac260231413d7d 100644 (file)
@@ -79,10 +79,21 @@ def get_options():
 
 # Un poco de ajax para llenar los cursos
 ajax = """
+    function showHint()
+    {
+        MochiKit.DOM.showElement('hint')
+    }
+
+    function hideHint()
+    {
+        MochiKit.DOM.hideElement('hint')
+    }
+
     function clearEnunciados ()
     {
         l = MochiKit.DOM.getElement('form_enunciadoID');
         l.options.length = 0;
+        l.disabled = true;
     }
 
     function mostrarEnunciados (res)
@@ -93,11 +104,14 @@ ajax = """
             label = res.enunciados[i].nombre;
             MochiKit.DOM.appendChildNodes("form_enunciadoID", OPTION({"value":id}, label))
         }
+        l.disabled = false;
+        hideHint();
     }
 
     function err (err)
     {
         alert("The metadata for MochiKit.Async could not be fetched :(");
+        hideHint();
     }
 
     function actualizar_enunciados ()
@@ -112,11 +126,14 @@ ajax = """
         url = "/enunciado/de_curso?curso_id="+id;
         var d = loadJSONDoc(url);
         d.addCallbacks(mostrarEnunciados, err);
+        showHint();
     }
 
     function prepare()
     {
         connect('form_cursoID', 'onchange', actualizar_enunciados);
+        hideHint();
+        clearEnunciados();
     }
 
     MochiKit.DOM.addLoadEvent(prepare)