[JBoss JIRA] Created: (RF-4160) Opening Treenode causes java.lang.NoClassDefFoundError
by Charles Crouch (JIRA)
Opening Treenode causes java.lang.NoClassDefFoundError
------------------------------------------------------
Key: RF-4160
URL: https://jira.jboss.org/jira/browse/RF-4160
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.3
Reporter: Charles Crouch
One of our users is hitting a NoClassDefFoundError when opening a Treenode :
10:53:45,561 ERROR [[default]] Servlet.service() for servlet default threw exception
java.lang.NoClassDefFoundError
at sun.java2d.SunGraphicsEnvironment.createGraphics(SunGraphicsEnvironment.java:337)
at java.awt.image.BufferedImage.createGraphics(BufferedImage.java:1143)
at org.ajax4jsf.resource.Java2Dresource.getImage(Java2Dresource.java:115)
at org.ajax4jsf.resource.Java2Dresource.send(Java2Dresource.java:89)
at org.ajax4jsf.resource.ResourceLifecycle.sendResource(ResourceLifecycle.java:223)
at org.ajax4jsf.resource.ResourceLifecycle.send(ResourceLifecycle.java:159)
at org.ajax4jsf.resource.InternetResourceService.load(InternetResourceService.java:336)
at org.ajax4jsf.cache.LRUMapCache.load(LRUMapCache.java:116)
at org.ajax4jsf.cache.LRUMapCache.get(LRUMapCache.java:87)
at org.ajax4jsf.resource.InternetResourceService.serviceResource(InternetResourceService.java:198)
at org.ajax4jsf.resource.InternetResourceService.serviceResource(InternetResourceService.java:144)
at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:265)
at org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:60)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:58)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158)
We don't want to have everyone set java.awt.headless=true in order to run our app, which does appear to fix this problem.
Are there any other options?
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months
[JBoss JIRA] Created: (RF-4024) rich:tooltip missing ajaxchild encode code.
by Victor (JIRA)
rich:tooltip missing ajaxchild encode code.
-------------------------------------------
Key: RF-4024
URL: https://jira.jboss.org/jira/browse/RF-4024
Project: RichFaces
Issue Type: Bug
Reporter: Victor
Priority: Critical
on the page:
<rich:tooltip>
<h:panelGroup id="tooltipGroup">
some value outputs
</h:panelGroup>
<rich:tooltip>
<a4j:commandButton reRender="tooltipGroup" ..../>
as result tooltipGroup will not rerender and tooltipGroup missed in the Ajax-Update-Ids
Cause of this issue is following method in the UIToolTip class (notice else clause)
public void encodeAjaxChild(FacesContext context, String path, Set ids,
Set renderedAreas) throws IOException {
if(ids.contains(this.getClientId(context) + "content")){
AjaxContext ajaxContext = AjaxContext.getCurrentInstance(context);
ToolTipRenderer r = (ToolTipRenderer)getRenderer(context);
r.encodeTooltipText(context, this);
ajaxContext.getAjaxRenderedAreas().add(this.getClientId(context) + "content");
} else {
// todo
// AjaxContext ajaxContext = AjaxContext.getCurrentInstance(context);
// ajaxContext.e
}
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months
[JBoss JIRA] Created: (RF-4011) rich:modalPanel "width" parameter does NOT work
by Yurii Kartsev (JIRA)
rich:modalPanel "width" parameter does NOT work
-----------------------------------------------
Key: RF-4011
URL: https://jira.jboss.org/jira/browse/RF-4011
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: JSF 1.2_07
Facelets 1.1.14
RF: v.3.2.2-SNAPSHOT SVN $Revision: 8947 $ $Date: 2008-06-07 08:39:49 -0400 (Sat, 07 Jun 2008) $
Browser: Mozilla Firefox 2.0.0.16
System: Windows XP SP2
App Server: JBoss 4.2.2 GA
Reporter: Yurii Kartsev
Priority: Critical
The parameter "width" in rich:modalPanel doesn't work. Only "minWidth" works.
Having this example, panel width is 550px:
<rich:modalPanel id="aboutModalBox" minHeight="100" minWidth="550" height="125" width="650" zindex="2000"/>
And having this one, it's 350px:
<rich:modalPanel id="aboutModalBox" minHeight="100" height="125" width="650" zindex="2000">
What's the point?
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months