Closed BrentD27 closed 8 years ago
You can try changing the line:
var select = document.form.office_name;
into:
var select = document.forms["office_name"];
I've just checked my local install and I do not have this issue using Google Chrome or Firefox. It could be an outdated browser issue (IE 6?). I'll close this for now but if you are still having an issue feel free to open it again.
I have installed the master repository. When I click "Edit System Settings" I get a blank page. The Debugger shows an error in the function office_names(). The debugger indicates a problem in the following code:
function office_names() { var select = document.form.office_name; select.options[0] = new Option("all"); select.options[0].value = 'all';
It highlights the line "select.options[0] = new Option("all"); and says "Uncaught TypeError: Cannot read property 'options' of undefined".
I've managed to debug all the other minor issues, but I can't seem to figure this one out.