[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-4551) Neither styles nor scripts are loaded on error page.
by Sergey Halipov (JIRA)
Neither styles nor scripts are loaded on error page.
----------------------------------------------------
Key: RF-4551
URL: https://jira.jboss.org/jira/browse/RF-4551
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: Tomcat 6.0.18
java version "1.6.0_07"
Java(TM) SE Runtime Environment (build 1.6.0_07-b06)
Java HotSpot(TM) Server VM (build 10.0-b23, mixed mode)
richfaces 3.2.2.GA
facelets 1.1.14
jsf 1.2_09fix
Reporter: Sergey Halipov
Priority: Blocker
web.xml
<error-page>
<error-code>404</error-code>
<location>/error404.jsf</location>
</error-page>
error404.xhtml
<h:form>
<rich:dropDownMenu value="Test"
id="menu_online_booking"
rendered="true">
<rich:menuItem id="menu_online_booking_createNewOrder"
value="test item"
action="#{MenuHandler.actionItemSelect}" >
<a4j:actionparam assignTo="#{MenuHandler.action}"
value="menu_online_booking_createNewOrder" />
</rich:menuItem>
</rich:dropDownMenu>
</h:form>
Try to open some non-existent page. Application will redirect to error404 page but rich faces styles and scripts will not be added to this page. Error appears with richfaces 3.2.2 only. 3.2.1 works fine.
--
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-3314) CommandLink action within dataTable is not executed in request scope
by Robert Stone (JIRA)
CommandLink action within dataTable is not executed in request scope
--------------------------------------------------------------------
Key: RF-3314
URL: http://jira.jboss.com/jira/browse/RF-3314
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Environment: myfaces 1.2.2
Reporter: Robert Stone
When clicking on links within datatable action/actionListener/actionparam is not executed when bean is placed in request scope. Code works with backing bean in the session scope.
<rich:dataTable id="seachResultsTable" var="seachResult"
value="${modalForm.searchResults}">
<rich:column>
<a4j:commandLink value="#{seachResult}" event="onclick"
id="selectSearchValue" reRender="modalMasterValue">
<a4j:actionparam name="searchFor" value="#{seachResult}"
assignTo="#{modalMaster.searchFor}" />
</a4j:commandLink>
<rich:componentControl for="modalSearchPanel" operation="hide"
event="onclick" />
</rich:column>
</rich:dataTable>
Backing beans Spring configuration (works if the second bean is moved to the session scope):
<bean id="modalMaster" class="com.boeing.nmt.nams.view.bean.ModalMasterBean" scope="request">
<property name="searchFor" value="... enter search"/>
</bean>
<bean id="modalForm" class="com.boeing.nmt.nams.view.bean.ModalFormBean" scope="request" />
--
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
15 years, 11 months