[JBoss JIRA] (RF-11103) org.richfaces.skin = plain causes java.lang.IllegalArgumentException: Width (2000) and height (0) cannot be <= 0
by Maciej Łoziński (JIRA)
[ https://issues.jboss.org/browse/RF-11103?page=com.atlassian.jira.plugin.s... ]
Maciej Łoziński commented on RF-11103:
--------------------------------------
I have another workaround - you have to override all "background-image" settings from skinning.ecss:
textarea, input[type="text"], input[type="password"], select,
button, input[type="reset"], input[type="submit"], input[type="button"],
button[disabled], input[type="reset"][disabled], input[type="submit"][disabled], input[type="button"][disabled],
button:hover, input[type="reset"]:hover, input[type="submit"]:hover, input[type="button"]:hover {
background-image: none;
}
It worked for me.
> org.richfaces.skin = plain causes java.lang.IllegalArgumentException: Width (2000) and height (0) cannot be <= 0
> ----------------------------------------------------------------------------------------------------------------
>
> Key: RF-11103
> URL: https://issues.jboss.org/browse/RF-11103
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: skinning
> Reporter: u j
> Priority: Minor
> Fix For: 5-Future
>
>
> I tried
> {code}
> <context-param>
> <param-name>org.richfaces.skin</param-name>
> <param-value>plain</param-value>
> </context-param>
> {code}
>
> and the skinning seems to be disabled, but I get
> {code}
> 14:44:21,584 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/myapp].[Faces Servlet]] Servlet.service() para servlet Faces Servlet lanzó excepción: java.lang.IllegalArgumentException: Width (2000) and height (0) cannot be <= 0
> at java.awt.image.DirectColorModel.createCompatibleWritableRaster(DirectColorModel.java:999) [:1.6.0_24]
> at java.awt.image.BufferedImage.<init>(BufferedImage.java:321) [:1.6.0_24]
> at org.richfaces.resource.ImageType.createARGBImage(ImageType.java:103) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.ImageType.access$200(ImageType.java:34) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.ImageType$2.createImage(ImageType.java:44) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.ImageType.createImage(ImageType.java:118) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.Java2DUserResourceWrapperImpl.paintAndWrite(Java2DUserResourceWrapperImpl.java:155) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.Java2DUserResourceWrapperImpl.getInputStream(Java2DUserResourceWrapperImpl.java:65) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.CachedResourceImpl.initialize(CachedResourceImpl.java:178) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:171) [:4.0.0-SNAPSHOT]
> at javax.faces.webapp.FacesServlet.service(FacesServlet.java:407) [:2.1.1-FCS]
> 14:45:38,493 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/myapp].[Faces Servlet]] Servlet.service() para servlet Faces Servlet lanzó excepción: java.lang.IllegalArgumentException: Width (1) and height (0) cannot be <= 0
> at java.awt.image.DirectColorModel.createCompatibleWritableRaster(DirectColorModel.java:999) [:1.6.0_24]
> at java.awt.image.BufferedImage.<init>(BufferedImage.java:321) [:1.6.0_24]
> at org.richfaces.resource.ImageType.createARGBImage(ImageType.java:103) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.ImageType.access$200(ImageType.java:34) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.ImageType$2.createImage(ImageType.java:44) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.ImageType.createImage(ImageType.java:118) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.Java2DUserResourceWrapperImpl.paintAndWrite(Java2DUserResourceWrapperImpl.java:155) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.Java2DUserResourceWrapperImpl.getInputStream(Java2DUserResourceWrapperImpl.java:65) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.CachedResourceImpl.initialize(CachedResourceImpl.java:178) [:4.0.0-SNAPSHOT]
> at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:171) [:4.0.0-SNAPSHOT]
> at javax.faces.webapp.FacesServlet.service(FacesServlet.java:407) [:2.1.1-FCS]
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:324) [:6.0.0.Final]
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242) [:6.0.0.Final]
> at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:67) [:6.0.0.Final]
> {code}
> I found a note
> http://echelog.matzon.dk/logs/browse/richfaces/1306706400
> Thanks
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 11 months
[JBoss JIRA] (RF-1011) TabPanel - inconsistent tab height on ie 7 if some labels wrap
by Cristina Lungu (JIRA)
[ https://issues.jboss.org/browse/RF-1011?page=com.atlassian.jira.plugin.sy... ]
Cristina Lungu commented on RF-1011:
------------------------------------
If you have a restriction on resolution to be 1024x768, with no horizontal scroll-bar, like I have, the nowrap solution above does not really solve the problem in case of many tabs. The workaround that fitted me better was to set an implicit height for the tabs that could accommodate best all the labels, like so:
.rich-tab-header
{ height: 30px; }
> TabPanel - inconsistent tab height on ie 7 if some labels wrap
> --------------------------------------------------------------
>
> Key: RF-1011
> URL: https://issues.jboss.org/browse/RF-1011
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 3.1.0
> Environment: Windows xp, weblogic 10, Internet Explorer 7
> Reporter: Martin Denham
> Assignee: Korluzhenko Veronika
> Fix For: 3.1.4, 3.2.0
>
> Attachments: betterTabtestScreenShot.jpg, tabPanel.png, tabtest.xhtml, tabtestScreenShot.jpg
>
>
> If you create a tabpanel containing lots of tabs eventually the tabs will be taller and some of the tab label text will occupy 2 rows. When this occurs all the tabs should still be the same height, but unfortunately on Internet Explorer 7 the tabs are different heights.
> The tab height is correct in Firefox and internet explorer 6, but wrong in Internet Explorer 7.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 11 months
[JBoss JIRA] (RF-12747) Fix ignored tests during Framework build
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12747?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč updated RF-12747:
----------------------------
Priority: Critical (was: Major)
> Fix ignored tests during Framework build
> ----------------------------------------
>
> Key: RF-12747
> URL: https://issues.jboss.org/browse/RF-12747
> Project: RichFaces
> Issue Type: Sub-task
> Security Level: Public(Everyone can see)
> Components: build/distribution
> Affects Versions: 5.0.0.M1
> Reporter: Lukáš Fryč
> Assignee: Lukáš Fryč
> Priority: Critical
> Fix For: 5.0.0.M1
>
> Original Estimate: 2 hours
> Remaining Estimate: 2 hours
>
> There are 6 tests failing when you run whole build, but they work when you run them separately.
> ----
> Tests fail when you run {{clean}} step first: {{mvn clean test -Dtest=AttachQueueHandlerTest}}
> When you do not run it, they works fine: {{mvn test -Dtest=AttachQueueHandlerTest}}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 11 months
[JBoss JIRA] (RF-12747) Fix ignored tests during Framework build
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12747?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč updated RF-12747:
----------------------------
Summary: Fix ignored tests during Framework build (was: Fix failing tests during Framework build)
> Fix ignored tests during Framework build
> ----------------------------------------
>
> Key: RF-12747
> URL: https://issues.jboss.org/browse/RF-12747
> Project: RichFaces
> Issue Type: Sub-task
> Security Level: Public(Everyone can see)
> Components: build/distribution
> Affects Versions: 5.0.0.M1
> Reporter: Lukáš Fryč
> Assignee: Lukáš Fryč
> Fix For: 5.0.0.M1
>
> Original Estimate: 2 hours
> Remaining Estimate: 2 hours
>
> There are 6 tests failing when you run whole build, but they work when you run them separately.
> ----
> Tests fail when you run {{clean}} step first: {{mvn clean test -Dtest=AttachQueueHandlerTest}}
> When you do not run it, they works fine: {{mvn test -Dtest=AttachQueueHandlerTest}}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 11 months
[JBoss JIRA] (RF-12199) rich:tooltip does not work inside h:graphicImage
by Roberto Cordoba (JIRA)
[ https://issues.jboss.org/browse/RF-12199?page=com.atlassian.jira.plugin.s... ]
Roberto Cordoba commented on RF-12199:
--------------------------------------
It´s not fixed.
I have version 4.2.3 and it´s still not working.
<div class="buscadorBarcosColumnaCorta" id="divIconoMasOpcionesBuscador">
<h:graphicImage value="/images/plusIcon.png" id="iconoMasOpciones" styleClass="iconoMedio" />
<rich:tooltip value="Hi this is a tooltip" target="iconoMasOpciones" />
</div>
Regards,
Roberto.
> rich:tooltip does not work inside h:graphicImage
> ------------------------------------------------
>
> Key: RF-12199
> URL: https://issues.jboss.org/browse/RF-12199
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-output
> Affects Versions: 4.2.1.Final
> Environment: RF 4.2.1.Final, GF 3.1.1
> Reporter: Bernhard Thalmayr
> Assignee: Luca Nardelli
> Fix For: 4.2.2.Final
>
>
> I created a simple richfaces app using maven archetype 'richfaces-archetype-simpleapp'
> Nesting rich:tooltip within h:graphicImage does not work; used mark up
> {code}
> <h:graphicImage id="img1" name="projectavatar.png" library="images">
> <rich:tooltip>
> <span>tooltip1</span>
> </rich:tooltip>
> </h:graphicImage>
> {code}
> wrapping h:graphicImage within a4j:outputPanel is no workaround
> {code}
> <a4j:outputPanel>
> <h:graphicImage id="img2" name="projectavatar.png" library="images">
> <rich:tooltip>
> <span>tooltip2</span>
> </rich:tooltip>
> </h:graphicImage>
> </a4j:outputPanel>
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 11 months