khanat-opennel-code/code/web/public_php/api/data/js/combobox.js
2017-03-15 20:29:34 +01:00

17 lines
434 B
JavaScript
Executable file

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;
}