[JBoss JIRA] Created: (RF-10231) PopupPanel destroy javascript method causes client side exception: expr.replace is not a function
by James Goodfellow (JIRA)
PopupPanel destroy javascript method causes client side exception: expr.replace is not a function
-------------------------------------------------------------------------------------------------
Key: RF-10231
URL: https://issues.jboss.org/browse/RF-10231
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-panels-layout-themes
Affects Versions: 4.0.0.Milestone5
Environment: myfaces 2.0.3, tomcat 6
Reporter: James Goodfellow
When the javascript method destroy on the popuppanel class is called, a javascript exception occurs:
expr.replace is not a function
I believe the problem is the destroy method (popupPanel.js line 166)
if (this.domReattached) {
var element = this.div;
var parent = element.parent();
if (parent) {
parent.remove(element);
}
}
I believe the correct method would be parent.removeChild(element);
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months
[JBoss JIRA] Created: (RF-10221) Error when opening a popup panel
by James Goodfellow (JIRA)
Error when opening a popup panel
--------------------------------
Key: RF-10221
URL: https://issues.jboss.org/browse/RF-10221
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-panels-layout-themes
Affects Versions: 4.0.0.Milestone5
Environment: myfaces 2.0.3, tomcat 6
Reporter: James Goodfellow
When I call show or hide for a popup panel I get the following error: "fn is undefined" from firefox.
I believe the offening code is: (in popupPanel.js)
showPopupPanel : function (id, opts, event) {
$(document).ready(richfaces.$(id).show());
},
hidePopupPanel : function (id, opts, event) {
$(document).ready(richfaces.$(id).hide());
}
It should probably be something more like:
showPopupPanel : function (id, opts, event) {
$(document).ready( function() { richfaces.$(id).show() } );
},
hidePopupPanel : function (id, opts, event) {
$(document).ready( function(){ richfaces.$(id).hide() } );
}
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months
[JBoss JIRA] Created: (RF-9936) Fix taglib
by Pavol Pitonak (JIRA)
Fix taglib
----------
Key: RF-9936
URL: https://jira.jboss.org/browse/RF-9936
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.0.0.Milestone4
Reporter: Pavol Pitonak
richfaces-components-ui-4.0.0-SNAPSHOT.jar contains the following files containing information about components:
* a4j.taglib.xml
* rich.taglib.xml
* faces-config.xml
* pn.faces-config.xml
All these files should be in sync.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 11 months
[JBoss JIRA] Created: (RF-10273) IE: popupPanel is misplaced
by Juergen Zimmermann (JIRA)
IE: popupPanel is misplaced
---------------------------
Key: RF-10273
URL: https://issues.jboss.org/browse/RF-10273
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-panels-layout-themes
Affects Versions: 4.0.0.Milestone5
Reporter: Juergen Zimmermann
I open a popupPanel in IE (instead of FF): the popupPanel's left border is placed at the left border of IE, and the popupPanel's right border is streched to the right. I'll attach a screenshot to illustrate the problem.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 11 months