Resolve dependencies when a combobox is updated.
This commit is contained in:
parent
25d9dc415f
commit
85f780f576
1 changed files with 6 additions and 0 deletions
|
@ -172,6 +172,12 @@ function cbi_combobox(id, values, def, man) {
|
||||||
} else {
|
} else {
|
||||||
obj.value = sel.options[sel.selectedIndex].value;
|
obj.value = sel.options[sel.selectedIndex].value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
cbi_d_update();
|
||||||
|
} catch (e) {
|
||||||
|
//Do nothing
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue