[JBoss JIRA] (RF-11461) rich:popupPanel slow down and high memory usage in Internet Explorer 7 (IE7)
by Euclides Melo (Created) (JIRA)
rich:popupPanel slow down and high memory usage in Internet Explorer 7 (IE7)
----------------------------------------------------------------------------
Key: RF-11461
URL: https://issues.jboss.org/browse/RF-11461
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-output
Affects Versions: 4.1.0.Milestone2, 4.1.0.Milestone1
Environment: Windows Vista 32bit, Internet Explorer 7.0 32bit
Reporter: Euclides Melo
The RF-10873 (rich:poppupPanel shadow which should block the main screen is not rendered whole) introduced changes in
.rf-pp-shade ( output/ui/src/main/resources/META-INF/resources/org.richfaces/popupPanel.ecss ).
The problematic change was:
{code}
.rf-pp-shade { /*BEFORE*/
- width: 100%;
- height: 100%;
}
{code}
*TO*
{code}
.rf-pp-shade { /*AFTER*/
+ width: 10000px;
+ height: 10000px;
}
{code}
This is causing major memory usage in Internet Explorer 7.0, then causes severe slow down on page. (It's reaching almost *400MB* in task manager)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] (RF-11575) rich:dataScroller - execute=@form does not save model on page change
by Lukáš Fryč (Created) (JIRA)
rich:dataScroller - execute=@form does not save model on page change
--------------------------------------------------------------------
Key: RF-11575
URL: https://issues.jboss.org/browse/RF-11575
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 4.1.0.Milestone4
Reporter: Lukáš Fryč
Assignee: Lukáš Fryč
Priority: Critical
Fix For: 4.1.0.Milestone4
In RF-10936, Ajax attributes was enabled to dataScroller to enable execute=@form, which effectively allows user to save table values when changing page, but the functionality still doesn't work - form is processed but model is not updated.
{code:XML}
<rich:dataTable var="person" value="#{people}>
...
<h:selectBooleanCheckbox value="#{person.sex}" />
...
<rich:dataScroller execute="@form" />
...
</rich:dataTable>
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (RF-11434) datascroller broken in 4.1.0.M1
by Brendan Healey (JIRA)
datascroller broken in 4.1.0.M1
-------------------------------
Key: RF-11434
URL: https://issues.jboss.org/browse/RF-11434
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 4.1.0.Milestone1
Environment: Mojarra 2.1.3
Reporter: Brendan Healey
I have an extendedDataTable with a datascroller. The first page of results
displays correctly, but on pressing the control for page 2 (or any other)
nothing happens. Using a4j:log I see that the ajax response to the post
request contains a java.lang.NullPointerException.
On reverting to 4.0.0.Final it works successfully. The problem also affects
a rich:dataTable. I've not been able to locate the M2 release in the Maven
repo to test it.
The extendedDataTable value attribute value is a straightforward List<Event>
where Event is a standard pojo. I was using ExtendedDataModel but removed
this code to eliminate this as a cause.
<h:form id="displayform" prependId="false">
<rich:panel>
<rich:tabPanel id="uppertabs" switchType="ajax"
itemChangeListener="#{manageEventsView.upperTabChange}">
<rich:tab id="list" title="#{msgs.listText}">
<ui:include src="manageEvents/list.xhtml"/>
</rich:tab>
...
manageEvents/list.xhtml
<a4j:log/>
<rich:extendedDataTable
id="eventlist"
rows="8"
value="#{manageEventsView.list}" var="var"
selection="#{manageEventsView.listSelectedRow}"
selectionMode="single"
style="display: block; white-space: nowrap">
<a4j:ajax render="eventlist lowertabs"
event="selectionchange"
listener="#{manageEventsView.listRowSelect}"/>
<rich:column style="text-align: center">
...
</rich:column>
</rich:extendedDataTable>
<rich:dataScroller for="eventlist"/>
Please let me know if I can provide any further information.
Regards,
Brendan.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (RF-11139) Client-side validation (JSR303) doesn't work without XHR request for validators from javax.validation package
by Ján Jamrich (JIRA)
Client-side validation (JSR303) doesn't work without XHR request for validators from javax.validation package
-------------------------------------------------------------------------------------------------------------
Key: RF-11139
URL: https://issues.jboss.org/browse/RF-11139
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: cdk
Affects Versions: 4.0.0.Final
Environment: RichFaces 4.1.0-SNAPSHOT r.22555
Metamer 4.1.0-SNAPSHOT r.22555
Mojarra 2.0.4-b09
Apache Tomcat 7.0.12
Java(TM) SE Runtime Environment 1.6.0_19-b04 @ Linux
Chrome 12.0.718.0 @ Linux i686
rich:validator
Reporter: Ján Jamrich
Client side validation should be done on client side. Only in case that validation cannot be done on client there should be request to server.
The problem is that using rich:validator and simple input with binding to backing bean annotated by javax.validation.constraints.Min doesn't validate value without XHR request.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months