:: Forum >>

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
-------
(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);
}
})();
Tuesday, September 23, 2008
This is a temporary fix, which should be applied only to AW 2.5.0. If you are using the latest version (AW 2.5.3) this fix is not necessary. Which version are you using? Do you have the same problem with AW 2.5.3?
Alex (ActiveWidgets)
Tuesday, September 23, 2008
ya i got it, it was my mistake
Friday, September 26, 2008

This topic is archived.


Back to support forum

Forum search