How I can do by clean my webcombo, I have to information in my screen, when I have used this information I want to clean all my display but I have problem with my webcombo, I can not clean it.
Hi.
I tried using the code:
webCombo.setDataValue(""); and webCombo.setDisplayValue("");
and it works a treat!
Thanks so much. Really appreciated :)
Hello,
1) If you set
is not enough ?
2) Do you have at the top of the dataset displayed in the webCombo an "empty string", meaning "All" or "None" or "Not selected" ?
You can select that "empty string" with method 1) or with webCombo.setSelectedIndex(0);
Hi guys
I am having the same problem. I want to clear down the selections on my webcombos.
I want to use client side code to do this and the code I am using at the moment (which isn't working) is as follows:
var travelZoneCombo = igcmbo_getComboById("cmbTravelZone");
{
travelZoneCombo.setSelectedIndex(-1);
travelZoneCombo.Element.disabled = false;
}
Is it possible to clear down combo selections? If so, how do I do it?
Many thanks in advance...
Please provide some source code on how have you tried to achieve this. In this way others will be able to test what is going wrong.