Hi all.
I'm trying to get the webCombo to fire an event when it's 'editable' area is double-clicked. So far I've tried with
webCombo.Attributes.Add("ondblclick", "DblClickEvent()");
but the event is not firing. The only restriction I have for this is to set this attribute in runtime since the webCombo itself is being dynamically created.
Any thoughts will be appreciated.
I have similar issue. Just wondering where you put the webCombo.inputBox.ondblclick = DblClickEvent; part of the code. Code behind doesn't seem to let me access "inputBox" part of the webCombo.
Hello mateia. I tried your suggestion and it worked just fine. Thanks a lot for your reply.
Hello,
You can do this:
webCombo.inputBox.ondblclick = DblClickEvent;
function DblClickEvent() { alert('double click the webcombo textbox'); }
Hello again. I'm still looking for some sort of workaround for this issue. Has anybody else some insight? Thanks
Hi, Vince. I know how to set the ClientSideEvents for thw IG net advantage controls, but as the webCombo does not implement any double-click handler, i was trying to do that by adding it as an attribute with no success.. Hopefully someone else will have some more ideas. Thanks for your reply.