Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: EE-2.0.0.GA
-
Fix Version/s: 2.1-Beta, 3.0, EE-2.0.0.GA_P01
-
Component/s: ICE-Components
-
Labels:None
-
Environment:-
-
Assignee Priority:P1
-
Workaround Exists:Yes
-
Workaround Description:Set toggleOnInput to false
Description
A row selectable dataTable has a commandLink which opens a popup (either modal or non modal). When the rowSelector attribute toggleOnInput is set to true, the resulting popup displays but the browser appears to hang. This does not occur with toggleOnInput set to false. I see the following JS error in Firebug:
element is null
return parentStream(element.parentNode);
coming from our bridge code here:
function parents(element) {
return Stream(function(cellConstructor) {
function parentStream(e) {
if (e == null || e == document) return null;
return function() {
return cellConstructor(e, parentStream(e.parentNode));
};
}
return parentStream(element.parentNode);
});
}
Test case attached.
element is null
return parentStream(element.parentNode);
coming from our bridge code here:
function parents(element) {
return Stream(function(cellConstructor) {
function parentStream(e) {
if (e == null || e == document) return null;
return function() {
return cellConstructor(e, parentStream(e.parentNode));
};
}
return parentStream(element.parentNode);
});
}
Test case attached.
Can't reproduce in FF or IE, ICEfaces 1.8 or 2, modal or nonmodal, draggable or undraggable. See video at http://screencast.com/t/D5ABowoLB