PDA

View Full Version : get notified when a combobox is opened


rsravipati
12-20-2005, 12:56 PM
Hi All,

I would like to get notifed when a combobox is opened. Any idea as to which event to listen to?

Thanks,
rr.

skow
12-21-2005, 08:17 AM
I believe adding the following method to your <combobox> is what you are looking for:

<method event="onisopen">
Debug.write('open');
</method>

rsravipati
12-21-2005, 08:48 AM
Thanks skow. That does the trick.