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.
Hello again. I'm still looking for some sort of workaround for this issue. Has anybody else some insight? Thanks
Hello,
You can do this:
webCombo.inputBox.ondblclick = DblClickEvent;
function DblClickEvent() { alert('double click the webcombo textbox'); }
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.