X-Git-Url: https://git.llucax.com/z.facultad/75.52/sercom.git/blobdiff_plain/5a5fd7200d429896765a5043908441683e5f06ea..0c099354041335dc9a9248b7b791656e24b53138:/sercom/subcontrollers/curso/templates/edit.kid diff --git a/sercom/subcontrollers/curso/templates/edit.kid b/sercom/subcontrollers/curso/templates/edit.kid index e4e6811..0a13da4 100644 --- a/sercom/subcontrollers/curso/templates/edit.kid +++ b/sercom/subcontrollers/curso/templates/edit.kid @@ -18,6 +18,28 @@ } MochiKit.DOM.addLoadEvent(init_data) + + 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))); + } + + function mover( src, dest ) { + moveOption(src, dest) + } + + function remover (src, dest) { + replaceChildNodes(src,list(ifilterfalse(itemgetter('selected'), $(src).options))) + } +