[JBoss JIRA] Created: (RF-4860) ui.pack.js and framework.pack.js not getting cached in browse Internet Explorer 6.0.2 and weblogic 9.2
by Bala Srin (JIRA)
ui.pack.js and framework.pack.js not getting cached in browse Internet Explorer 6.0.2 and weblogic 9.2
------------------------------------------------------------------------------------------------------
Key: RF-4860
URL: https://jira.jboss.org/jira/browse/RF-4860
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.1
Environment: Browser : Internet Explorer 6.0.2
Application Server: Weblogic 6.0.2
Reporter: Bala Srin
Priority: Blocker
When ever the request is processed, the ui.pack.js and framework.pack.js gets downloaded each time from the application server. Both the files put together is of 600KB. As to improve the performance of the application we require these two javascripts to be cached in the browser.
The caching do not occur with IE 6.0.2 and Weblogic 9.2, but the same files are cached by mozilla firefox with same app server and IE caches the same with other app server like JBOSS
Kindly let me know if any specific configuration to be made in this scenario
--
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
15 years, 11 months
[JBoss JIRA] Created: (RF-4901) ModalPanel: switching on scrolls breaks resizers behaviors
by Nick Belaevski (JIRA)
ModalPanel: switching on scrolls breaks resizers behaviors
-----------------------------------------------------------
Key: RF-4901
URL: https://jira.jboss.org/jira/browse/RF-4901
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Reporter: Nick Belaevski
Assignee: Nick Belaevski
Priority: Minor
Fix For: 3.3.0
Issue:
--------
Just thought I'd report to you a small but quite annoying problem with the RichFaces ModalPanel component when rendered in Internet Explorer.
If you resize the panel by dragging the lower right corner with your mouse, you get stuck - I have not discovered any way to stop resizing. The only thing you can do is close the browser and start all over again.
Everything seems to work fine with FireFox, and resizing in IE works OK when dragging the right edge or lower edge of the panel. But dragging the lower right corner in IE gets you completely stuck.
Fortunately, this is not something that our users attempt frequently, but they are not happy campers if they do stumble across this behavior. If there's anything I can tell them about when this might be fixed, they will appreciate it.
How to reproduce:
------------------------
The code below reproduces the problem when run in Internet Explorer. Same problem in versions 6 and 7 of IE.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:rich="http://richfaces.org/rich"
>
<head>
<style type="text/css">
.dr-mpnl-pnl {overflow:auto!important}
</style>
</head>
<body>
<rich:modalPanel id="panel" resizeable="true" left="10">
<f:facet name="header">
Test
</f:facet>
<f:facet name="controls">
<h:graphicImage value="/images/close.png" style="cursor:pointer" onclick="Richfaces.hideModalPanel('panel')" />
</f:facet>
Try resizing me in Internet Explorer by dragging the bottom right corner.
<br/>
Then see if you can close me - good luck!
</rich:modalPanel>
<h:outputLink value="#" id="link">
Show Modal Panel
<rich:componentControl for="panel" attachTo="link" operation="show" event="onclick"/>
</h:outputLink>
</body>
</html>
--
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
15 years, 11 months
[JBoss JIRA] Created: (RF-5639) combobox: unicode display incorrect during first navigation to page with component(myfaces only)
by Mikhail Vitenkov (JIRA)
combobox: unicode display incorrect during first navigation to page with component(myfaces only)
------------------------------------------------------------------------------------------------
Key: RF-5639
URL: https://jira.jboss.org/jira/browse/RF-5639
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: IE6, IE7, FF 3.1.3, Safari 3.1, Opera 9.62(3.3.0.CR3) myfaces 1.2.5
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
#1. Jsp code:
<?xml version="1.0" encoding="UTF-8"?>
...
<h:form id="formID">
<h:commandButton value="submit" />
<rich:comboBox>
<f:selectItems value="#{custom.items}"/>
</rich:comboBox>
</h:form>
#2. Java bean code:
items = new SelectItem[3];
for(int i=0;i<3;i++){
items[i] = new SelectItem(i+"\u00a0"+i,i+"\u00a0"+i);
}
#3. Navigate to page and click component button.
#4. Verify comboBox items.
#5. Press submit and repeat Step #4.
Actual behavior:
When page display at 1st time, following values display in box: 1\u00a01,2\u00a02.. But after submit values look such way: 1 1, 2 2...
--
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
15 years, 11 months