[JBoss JIRA] (RF-12850) Popup panel: button's label is invisible in IE10
by Marco Bulau (JIRA)
[ https://issues.jboss.org/browse/RF-12850?page=com.atlassian.jira.plugin.s... ]
Marco Bulau commented on RF-12850:
----------------------------------
I have exactly the same problem in IE8. I'm using RF 4.3.2.Final. In IE9 it works fine for me.
Is it correct to comment this issue or should I create a new one or address it to RF-13010?
> Popup panel: button's label is invisible in IE10
> ------------------------------------------------
>
> Key: RF-12850
> URL: https://issues.jboss.org/browse/RF-12850
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-panels-layout-themes
> Affects Versions: 4.2.3.Final, 4.3.0.Final, 4.3.1
> Environment: RichFaces 4.3.2-SNAPSHOT
> EAP 6.0.1, Tomcat 6.0.32, Tomcat 7.0.35
> Mojarra 2.1.7, 2.1.17, MyFaces 2.1.10
> Internet Explorer 9, 10
> Reporter: Pavol Pitonak
> Assignee: Brian Leathem
> Fix For: 4.3.2, 5.0.0.Alpha1
>
> Attachments: buttonInPopupPanel.png
>
> Original Estimate: 3 hours
> Remaining Estimate: 3 hours
>
> {code:xml}
> <rich:popupPanel id="panel" show="true" header="xxx">
> <h:commandButton id="button" value="Submit" />
> </rich:popupPanel>
> {code}
> If a page with code snippet above is opened in IE9/IE10, the label "Submit" of button is not displayed until mouse over event.
> Since it appears in all JSF implementations and on all runtime containers and works in browsers different from IE, it looks like a bug in IE interpretation of CSS classes.
> Sample works fine when header of popup panel is not displayed (i.e. header attribute isn't set and no facet is defined).
--
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, 4 months
[JBoss JIRA] (RF-12936) Use jQuery in non-conflicting way
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12936?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-12936:
-------------------------------
Original Estimate: 1 hour
Remaining Estimate: 1 hour
> Use jQuery in non-conflicting way
> ---------------------------------
>
> Key: RF-12936
> URL: https://issues.jboss.org/browse/RF-12936
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: core
> Affects Versions: 4.3.1
> Reporter: Lukáš Fryč
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 1 hour
> Remaining Estimate: 1 hour
>
> The {{richfaces.js}} references both, {{jQuery}} from closure and global {{$}} - this issue is addressed in RF-12833.
> However jQuery should not be used directly, rather from closures - prefered way is to use {{$}} but its naming now conflicts with {{RichFaces.$}} for component references.
> I suggest to use following trick:
> {code:title=richfaces.js}
> RichFaces.jQuery = RichFaces.jQuery || jQuery;
> //encapsulation
> (function($, RichFaces) {
> // free to use $ here
> }(RichFaces.jQuery, RichFaces));
> {code}
> It will allow:
> * provide own jQuery for RichFaces
> * use libraries which make use of {{$}} (prototype, other jQuery versions) in no-conflicting way
--
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, 4 months