X-Git-Url: https://git.llucax.com/software/sercom.git/blobdiff_plain/706ad3223b5e5f4de2cbdefec72f0f2f78ba79f4..68e9d1b139c54e69d0afcbfb53df4b42ced27348:/sercom/widgets.py diff --git a/sercom/widgets.py b/sercom/widgets.py index 6379964..070fb76 100644 --- a/sercom/widgets.py +++ b/sercom/widgets.py @@ -19,7 +19,7 @@ class CustomTextField(widgets.TextField): ''' -AlumnoMultiSelectAjax = ''' +MultiSelectAjax = ''' function _on_alumno_get_result(lista, loading, results) { @@ -30,6 +30,7 @@ AlumnoMultiSelectAjax = ''' return; } MochiKit.DOM.appendChildNodes(lista, OPTION({'value':results.msg.id}, results.msg.value)); + l = MochiKit.DOM.getElement(lista); } function _on_alumno_get_error(loading, results) @@ -39,57 +40,38 @@ AlumnoMultiSelectAjax = ''' load.style.visibility = 'hidden'; } - function agregar_a_la_lista(texto, lista, loading) + function sacar_de_la_lista(lista) + { + replaceChildNodes(lista, + list(ifilterfalse(itemgetter('selected'), $(lista).options)) + ); + } + + function _do_add(callback, texto, lista, loading) { + url = callback(texto, lista); t = MochiKit.DOM.getElement(texto); - /* Como no se si se puede hacer de otra manera, asumo que tengo en - * el form un Combo que se llama curso en el codigo, y tiro error si - * no existe - */ - curso = MochiKit.DOM.getElement('form_cursoID'); - if (!curso) { - alert("No deberias ver esto, y quiere decir que tu form esta roto.\\nTe falta un combo de curso"); - return; - } - if (curso.options[curso.selectedIndex].value <= 0) { - alert('Debes seleccionar un curso primero'); - return; - } load = MochiKit.DOM.getElement(loading); load.style.visibility = 'visible'; - url = "/grupo/get_inscripto?cursoid="+curso.options[curso.selectedIndex].value+"&padron="+t.value; var d = loadJSONDoc(url); d.addCallbacks(partial(_on_alumno_get_result, lista, loading), partial(_on_alumno_get_error, loading)); - t.value = ""; - } - - function sacar_de_la_lista(lista) - { - l = MochiKit.DOM.getElement(lista); - if (l.selectedIndex < 0) return; - - /* caso especial, 1 solo item */ - if (l.options.length == 1) { - l.options.length = 0 - return; - } - - for (i=l.selectedIndex; i - - +
+
+ - - + onClick=" _do_add(${on_add}, '${field_id}_nuevo', '${field_id}', '${name}_loading'); " /> +
+
- - - +
+ - - +
+
''' - javascript = [widgets.JSSource(AlumnoMultiSelectAjax)] + javascript = [widgets.JSSource(MultiSelectAjax)] + on_add = "alert('Not defined action');" + def __init__(self, **kw): + self.params.append('on_add') + self.on_add = "alert('Not defined action');" + widgets.MultipleSelectField.__init__(self, **kw)