gkassyou
26 Sep 2007, 11:02 AM
I'm trying to load the remote combobox on expand after verifying if other required fields are valid.
combo.on('expand', function() {
if (field1.isValid() & field2.isValid())
combo.load();
}
the issue is that if the fields are not valid, then the expand does not fire again when I input valid values in the fields.
Any ideas?
combo.on('expand', function() {
if (field1.isValid() & field2.isValid())
combo.load();
}
the issue is that if the fields are not valid, then the expand does not fire again when I input valid values in the fields.
Any ideas?