[JBoss JIRA] Created: (RF-8072) ExtendedDataTable : the table bugs when the navigator is resized
by Bob Mauranne (JIRA)
ExtendedDataTable : the table bugs when the navigator is resized
----------------------------------------------------------------
Key: RF-8072
URL: https://jira.jboss.org/jira/browse/RF-8072
Project: RichFaces
Issue Type: Bug
Environment: Windows XP, JBoss 5.1, Richfaces 3.3.0.GA to 3.3.2.SR1, Seam 2.2.0
firefox 3.5.4 IE 7
Reporter: Bob Mauranne
When the navigator window is resized, even slightly, a bug occur :
With Firefox : every column is reduced to a minimum, and the headers aren't aligned with the data anymore
With IE : ie freezes and takes 50% processor (100% of a core i suppose) during at least 30 seconds before rerendering the page (but the table is still good)
My extendeddatatable has 46 columns (more than the width of the screen, i had to trick the horizontal scrollbar), and 230 rows paginated by groups of 100
--
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, 1 month
[JBoss JIRA] Created: (RF-8134) Memory leak in the in-process template compiler.
by Alexander Smirnov (JIRA)
Memory leak in the in-process template compiler.
------------------------------------------------
Key: RF-8134
URL: https://jira.jboss.org/jira/browse/RF-8134
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.2.SR1
Reporter: Alexander Smirnov
In-proces compiled templates are widely used by dynamic stylesheets or complonents like suggestionBox. These templates are compiled into in-memory object structures what usually have only one instance in application. These objects are called with special context to generate request output ( lightweight object pattern ).
<f:call element > caches call parameter values in its instance, even FacesContext or current component references that are short-time objects. As a results, memory leaks are occured in the org.ajax4jsf.rendercit.compiler.MethodCallElement class. The source of problem are inner Signature1 and Signature2 classes:
Signature1(int size) {
arguments = new Object[size + 1];
}
void update(TemplateContext context, Object[] parameters) {
arguments[0] = context;
System.arraycopy(parameters, 0, arguments, 1, parameters.length);
}
}
class Signature2 extends Signature {
Signature2(int size) {
arguments = new Object[size + 2];
}
void update(TemplateContext context, Object[] parameters) {
arguments[0] = context.getFacesContext();
arguments[1] = context.getComponent();
System.arraycopy(parameters, 0, arguments, 2, parameters.length);
}
To avoid memory leaks, only types of the target method should be cached ( not object instances ).
--
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, 1 month
[JBoss JIRA] Created: (RF-8028) 3.3.2GA combobox: in right-to-left languages (when dir=rtl) the selectedItem is partially hidden by the button
by ofir maor (JIRA)
3.3.2GA combobox: in right-to-left languages (when dir=rtl) the selectedItem is partially hidden by the button
---------------------------------------------------------------------------------------------------------------
Key: RF-8028
URL: https://jira.jboss.org/jira/browse/RF-8028
Project: RichFaces
Issue Type: Bug
Components: component-input, regression
Affects Versions: 3.3.2.GA
Environment: FF3.5 + IE8
Reporter: ofir maor
Attachments: image1.JPG, image2.JPG
in 3.3.2GA the button of the combobox overlaps the input field (i can see it with firebug).
thus in right-to-left languages (when dir=rtl) the selectedItem is partially hidden by the button.
that problem exists in 3.3.2GA, but not in 3.3.1GA.
see attached image1.
note:
i think that in right-to-left languages the button should be in the left side of the combobox. that is the button and the selectedItem are in the opposite sides. therefore mirrors better the combobox for left-to-right languages.
see attached image2.
--
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, 1 month