I think I read somewhere that you cannot disable the webcombo in javascript in v9.1. Is this true, and is this the case for v9.2? I have been trying to figure out how to disable it within javascript, and cannot get it to work. Does anyone have the info how to disable it in javascript?
Thanks in advance!
Kelly
Hello,
You can do something like this:
function clickCombo(webComboId) {
var oCombo = igcmbo_getComboById(webComboId);
oCombo.Element.disabled = true;
}
Hope this helps you.
Bingo!
That worked.
THANKS!