Combo popup scrollbar
Hi Alex, i am using AW 2.5 version,here i placed a combo in the grid. combo values is morethan 100, In ie6.0 & mozilla the popup displayed in un viewable height. So, i want to place the veritical scrollbar according to the available data, please help me alex to get out this problem.i havebeen used the code in aw.js, what u posted for popup scrollbar.But i am not able to get the solution.please help me
mycode
-------
mycode
-------
(function(){
function fixPopup(cls){
new cls;
var obj = cls.prototype;
var showPopup = obj.showPopup;
var hidePopup = obj.hidePopup;
function cancel(event){
event.cancelBubble = true;
}
obj.showPopup = function(){
showPopup.call(this);
this.$popup.document.body.attachEvent("onbeforedeactivate", cancel);
}
obj.hidePopup = function(){
if (this.$popup) { this.$popup.document.body.detachEvent("onbeforedeactivate", cancel);
}
hidePopup.call(this);
}
}
if (AW.ie) {
fixPopup(AW.Templates.Popup);
fixPopup(AW.UI.Combo);
}
})();
September 23,