connect('form_cursoID', 'onchange', actualizar_enunciados);
hideHint();
clearEnunciados();
+ actualizar_enunciados();
+ if (select_enunciado) {
+ wait(0.1).addCallback(function (res) { return select_enunciado() });
+ }
}
MochiKit.DOM.addLoadEvent(prepare)
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
<title>edit</title>
</head>
+<script type="text/javascript">
+ function select_enunciado() {
+ lista = MochiKit.DOM.getElement('enunciadoID');
+ for(i=0; i < l.options.length; i++) {
+ if (l.options[i].value == ${record.enunciado.id}) {
+ l.options[i].selected = true;
+ l.selectedIndex = i;
+ break;
+ }
+ }
+ }
+</script>
<body>
<h1>Modificación de <span py:replace="name">Objeto</span></h1>
<br/>
<a href="${tg.url('/ejercicio/show/%d' % record.id)}">Ver (cancela)</a> |
<a href="${tg.url('/ejercicio/list')}">Volver (cancela)</a>
-
</body>
</html>