Hi ,
Is there any method to get the displayvalue( not selected value) of a webcombo at client side.
Thanks in advance
Hi
using this code u can get Dispaly value of Webcombo...in client side
igcmbo_getComboById("ComboID").getDisplayValue()
Ravikumar
Hi,
I'm not able to use this solution..
plz can u tell what do u mean by igcmbo.
I tried using this solution
var WebCombo = ISGetObject(controlId);
alert(WebCombo.getDisplayValue());
can anyone find the solution
Regards
Srikanth kota
I don't know what "ISGetObject(controlID)" is supposed to do. It's not a function that Infragistics provides.
I suspect that you likely intended to use the following code instead, to get a reference to a WebCombo control through our client-side object model (CSOM), whose client ID matches the value stored in your "controlId" variable:
var WebCombo = igcmbo_getComboById(controlId);