Hi All,
I am entering some text in input box of WebCombo. What I want is to open a pop up on the onblur of it. How can it be done?
In your initCombo event, place the following code:
var box = cbo.getInputBox();
box.attachEvent("onblur",cboOnBlur);
Note: I've only tested this in IE6.
Thanks for the solution.I have also tried it on similar lines and it works fine.
There is an client side event called "initializeCombo" in webcombo, give it any function name say "SetUpEventHandler".
function SetUpEventHandler(webComboId){ var combo = igcmbo_getComboById(webComboId); if(combo && combo.Editable) { var box = combo.getInputBox(); box.attachEvent("onblur()",cboOnBlur); }}
function cboOnBlur(event,controlId){ alert('on blur event');}