git-svn-id: http://xe-core.googlecode.com/svn/trunk@190 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-02-26 02:52:48 +00:00
parent 591f780345
commit 3515dc984a
9 changed files with 108 additions and 6 deletions

View file

@ -172,4 +172,12 @@ function doEditDefaultValue(obj, cmd) {
else listup_obj.selectedIndex = idx-1;
break;
}
var value_list = new Array();
for(var i=0;i<listup_obj.options.length;i++) {
value_list[value_list.length] = listup_obj.options[i].value;
}
xGetElementById('fo_join_form').default_value.value = value_list.join('|@|');
}