X-Git-Url: https://git.llucax.com/z.facultad/75.52/sercom.git/blobdiff_plain/80066ce43bd7bac9343044fd8a6f304a5ff841c3..c060eb596477ba7a2ffc3458d7c8d0c66d39afb0:/sercom/widgets.py diff --git a/sercom/widgets.py b/sercom/widgets.py index 309adc0..c19f54c 100644 --- a/sercom/widgets.py +++ b/sercom/widgets.py @@ -7,70 +7,186 @@ class CustomTextField(widgets.TextField): """Un input con un div al lado para ponerle info""" template = ''' - ''' -AlumnoMultiSelectAjax = ''' - function agregar_a_la_lista(texto, lista) +MultiSelectAjax = ''' + + function _on_alumno_get_result(lista, loading, results) { - t = MochiKit.DOM.getElement(texto); - MochiKit.DOM.appendChildNodes(lista, OPTION(t.value)); - t.value = ""; + load = MochiKit.DOM.getElement(loading); + load.style.visibility = 'hidden'; + if (results.error) { + alert(results.msg); + return; + } + /* Verifico si esta y no lo agrego si esta repetido */ + l = MochiKit.DOM.getElement(lista); + esta = false; + for(i=0; i - - - - - + + + +
+ - - - +
+ - +
+
+ ''' + 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) + +DosListasAjax = ''' + function makeOption(option) { + return OPTION({"value": option.value}, option.text); + } + + function moveOption( fromSelect, toSelect) { + // add 'selected' nodes toSelect + appendChildNodes(toSelect, + map( makeOption,ifilter(itemgetter('selected'), $(fromSelect).options))); + // remove the 'selected' fromSelect + replaceChildNodes(fromSelect, + list(ifilterfalse(itemgetter('selected'), $(fromSelect).options)) + ); + } +''' + +class AjaxDosListasSelect(widgets.MultipleSelectField): + template = ''' +
+ + + + + + + + + + +
${title_from} ${title_to}
+ + + +
+
+ +
+ +
+
''' - javascript = [widgets.JSSource(AlumnoMultiSelectAjax)] + javascript = [widgets.JSSource(DosListasAjax)] + title_from = "" + title_to = "" + + def __init__(self, **kw): + self.params.append('title_from') + self.params.append('title_to') + self.title_from = " " + self.title_to = " " + widgets.MultipleSelectField.__init__(self, **kw)