Problems with version 1.0 in Firefox 1.5
There are several known problems with ActiveWidgets 1.0 when running in Firefox 1.5. I am planning to make a bug fix release (1.0.2) soon after Firefox 1.5 final, somewhere in the next two weeks. Here is a list of problems which I know so far:
1). Scrollbars inside grid headers. Could be fixed with the following CSS:
2). Problem with column resizing (same as 1.0.6, 1.0.7) - apply the same fix:
3). vertical scrollbar missing in 'basic.htm' - don't know the solution yet.
Anything else?
1). Scrollbars inside grid headers. Could be fixed with the following CSS:
.active-grid-row.gecko, .active-box-normal.gecko {
overflow-y: visible;
}
2). Problem with column resizing (same as 1.0.6, 1.0.7) - apply the same fix:
if (window.HTMLElement) {
var element = HTMLElement.prototype;
var capture = ["click", "mousedown", "mouseup", "mousemove", "mouseover", "mouseout" ];
element.setCapture = function(){
var self = this;
var flag = false;
this._capture = function(e){
if (flag) {return}
flag = true;
var event = document.createEvent("MouseEvents");
event.initMouseEvent(e.type,
e.bubbles, e.cancelable, e.view, e.detail,
e.screenX, e.screenY, e.clientX, e.clientY,
e.ctrlKey, e.altKey, e.shiftKey, e.metaKey,
e.button, e.relatedTarget);
self.dispatchEvent(event);
flag = false;
};
for (var i=0; i<capture.length; i++) {
window.addEventListener(capture[i], this._capture, true);
}
};
element.releaseCapture = function(){
for (var i=0; i<capture.length; i++) {
window.removeEventListener(capture[i], this._capture, true);
}
this._capture = null;
};
}
3). vertical scrollbar missing in 'basic.htm' - don't know the solution yet.
Anything else?
Alex (ActiveWidgets)
November 21,