i am using NetAdvantage Web 7.2
I want to be able to do something like the following combo.setEnabled(false); or combo.setEnabled(true); i have the following function...
{
// get the combo from the passed-in id
var grid = combo.getGrid();
combo.setSelectedIndex(-1);
}
else
row = grid.Rows.getRow(index);
combo.setSelectedRow(row);
I know it's been a while since you posted your issue. I recently had this same problem and I created a post, but I did not receive any answers, so I contacted Infragistics support. They responded with the following code which will allow enable / disable of the webcombo:
igcmbo_getComboById("WebCombo1").Element.disabled=false
Works like a charm.
Thank you!!