[JBoss JIRA] Reopened: (RF-881) rich:tree - showConnectingLines problem in Firefox
by Nick Belaevski (JIRA)
[ http://jira.jboss.com/jira/browse/RF-881?page=all ]
Nick Belaevski reopened RF-881:
-------------------------------
Assignee: Pavel Yaschenko (was: Alexander Francuzov)
Fix reverted in r3298 as it broken connecting lines functionality in FF/ajax
> rich:tree - showConnectingLines problem in Firefox
> --------------------------------------------------
>
> Key: RF-881
> URL: http://jira.jboss.com/jira/browse/RF-881
> Project: RichFaces
> Issue Type: Bug
> Affects Versions: 3.1.0
> Environment: Richfaces 3.1.0-rc5
> Firefox 2.0.0.6 / Windows XP
> Reporter: Jason Young
> Assigned To: Pavel Yaschenko
> Fix For: 3.2.0, 3.1.1
>
> Attachments: screenshot-1.jpg
>
>
> When showConnectingLines=false is set, the last node in each subtree has a background image rendered next to it. The URL for the image is something like: /a4j_3_1_0-SNAPSHOTorg.richfaces.renderkit.html.images.TreeLineLastImage/DATB/eAH7....1Tv3GRgYACS3BY4_.jsf.
> This issue only appears in Firefox. It looks fine with IE6.
> I have a screenshot I intend to attach.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 4 months
[JBoss JIRA] Created: (RF-1083) <script>'s in rerendered regions are not getting evaluated on IE 6/7
by Doug Chasman (JIRA)
<script>'s in rerendered regions are not getting evaluated on IE 6/7
--------------------------------------------------------------------
Key: RF-1083
URL: http://jira.jboss.com/jira/browse/RF-1083
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.0
Environment: RF 3.1.0 and also tried 3.1.1 GA
Reporter: Doug Chasman
Priority: Blocker
<script>'s in rerendered regions are not getting evaluated on IE 6/7.
Relevant ajax log entries for Firefox (where things work fine) look like this:
debug[12:55:50,092]: Evaluate script replaced area in document: // count++ //
debug[12:55:50,094]: Evaluate script replaced area in document: // alert('hey') //
and for IE:
debug[12:47:53,248]: Evaluate script replaced area in document: //
debug[12:47:53,248]: Evaluate script replaced area in document: //
looks to me like something is not right in JSAJAX.js or Sarissa:
var newscript = Sarissa.getText( newscripts[i],true ) ;
and we're getting an empty string back instead of the body of the <script>. So far I have been unable to work around this and this issue is a showstopper for a release i am working on.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 4 months
[JBoss JIRA] Created: (RF-1064) ResourceLifecycle fails to restore UIViewRoot
by Stan Silvert (JIRA)
ResourceLifecycle fails to restore UIViewRoot
---------------------------------------------
Key: RF-1064
URL: http://jira.jboss.com/jira/browse/RF-1064
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.0
Reporter: Stan Silvert
org.ajax4jsf.resource.ResourceLifecycle.send() has this code:
// create "dummy" viewRoot, to avoid problems in phase listeners.
UIViewRoot root = new UIViewRoot();
root.setViewId(resource.getKey());
root.setLocale(Locale.getDefault());
root.setRenderKitId(RenderKitFactory.HTML_BASIC_RENDER_KIT);
facesContext.setViewRoot(root);
This causes JBoss JSFUnit to fail because the original UIViewRoot is never restored. JSFUnit saves the FacesContext so that it can be examined by unit tests. So it needs to be able to see the original component tree. Can you do something like:
UIViewRoot savedViewRoot = facesContext.getViewRoot();
try {
// do stuff with your dummy ViewRoot
} finally {
facesContext.setViewRoot(savedViewRoot);
}
Thanks,
Stan Silvert
JBoss JSFUnit Lead
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 4 months