khanat-opennel-code/code/web/public_php/api/data/js/combobox.js

18 lines
417 B
JavaScript
Raw Normal View History

2012-10-23 15:44:36 +00:00
function comboInit(thelist)
{
theinput = document.getElementById(theinput);
var idx = thelist.selectedIndex;
var content = thelist.options[idx].value;
if(theinput.value == "")
theinput.value = content;
}
function combo(thelist, theinput)
{
theinput = document.getElementById(theinput);
var idx = thelist.selectedIndex;
var content = thelist.options[idx].value;
theinput.value = content;
}