Hi,
I have a combox that only should close when the arrow is selected. To do this, I am using the OnClientDropDownClosing event. The code below does eactly what I want it to do, only close when arrow is selected. When the dropdown arrow is selected, the OnClientDropDownClosing is called, the dropdown closes, then the
OnClientDropDownClosed is called and everything works fine.
CONTROL:
OnClientDropDownClosing Function
This all worked; but then we added Ajax to the mix and it has stopped working. Now here what's happening.
OnClientDropDownClosing is called everytime a click is made in the drop down and remains open like I want it to; then once the dropdown arrow is clicked, it calls
OnClientDropDownClosing, closes the dropdown, then opens it again..Never Calling the OnClientDropDownClosed event, which I am guessing is because the dropdown opens again.
Could it not be working because of the AJAX?
Thanks,
Gary