Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function loadComboboxStrings(f, c, b) {
- try {
- var a = $(f);
- a.options.length = 0;
- $each(c, function (g, e) {
- if (g == "") {
- return
- }
- a.options[a.options.length] = new Option(g, e, false, false)
- });
- a.set("value", b)
- } catch (d) {
- console.log("Error attempting to assign values to combobox with id='" + f + "'... ");
- console.log(d.name + ": " + d.message)
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment