[JBoss JIRA] Created: (RF-3349) DataTableScroller: DataTableScroller works incorrectly on richfaces demo.
by Heorhi Maksimenko (JIRA)
DataTableScroller: DataTableScroller works incorrectly on richfaces demo.
-------------------------------------------------------------------------
Key: RF-3349
URL: http://jira.jboss.com/jira/browse/RF-3349
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.1
Environment: richfaces-demo, FF2, IE6, Safari 3, Opera 9.25
Reporter: Heorhi Maksimenko
Assigned To: Nick Belaevski
1. Go to demo application.
2. Go to DataTableScroller page.
3. Change value of top DataTableScroller.-->Table and bottom DataTableScroller aren't changed. See attachment RF 3349
4. Change value of bottom DataTableScroller.-->Table and top DataTableScroller are changed corresponding to bottom DataTableScroller.
5. Change value of top DataTableScroller.-->Table and bottom DataTableScroller are changed corresponding to top DataTableScroller.
Expected results:
Top and bottom DataTableScrollers should work same.
--
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
16 years, 7 months
[JBoss JIRA] Created: (RF-3432) CalendarRendererBase ERROR while submitting a form
by Yurii Kartsev (JIRA)
CalendarRendererBase ERROR while submitting a form
--------------------------------------------------
Key: RF-3432
URL: http://jira.jboss.com/jira/browse/RF-3432
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.1
Environment: Windows XP SP2
jdk1.6.0_01
JSF 1.2_08 + Facelets 1.1.13
jboss 4.2.2.GA
RichFaces v.3.2.1-SNAPSHOT SVN $Revision: 7513 $ $Date: 2008-03-31 21:05:05 -0400 (Mon, 31 Mar 2008) $
Reporter: Yurii Kartsev
Priority: Critical
When I try to submit a form with one or more rich:calendars(no matter empty or not and required or not), the error is shown in the logs:
ERROR [CalendarRendererBase] Could not instantiate converter for type class java.util.Date: java.lang.NullPointerException
--
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
16 years, 7 months
[JBoss JIRA] Created: (RF-3422) Update RichFaces CSS to include margin=0 for visual components
by FlaxSeed (JIRA)
Update RichFaces CSS to include margin=0 for visual components
--------------------------------------------------------------
Key: RF-3422
URL: http://jira.jboss.com/jira/browse/RF-3422
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Environment: win32, IE, FF
Reporter: FlaxSeed
Priority: Minor
Fix For: 3.2.1
If you are used container based CSS and "form, p" or "table" is set with a margin > 0, the RichFaces rendering of some components with get messed up (see post for screenshot). The easy fix is to simply add margin:0px; to the RichFaces components that are affected. I am currently doing this but this is fragile if I decide to upgrade version because the URLs for background images. Here's my CSS:
.rich-list-picklist-button,.rich-list-picklist-button-disabled {
margin:0px;
background-color:#C6DEFF;
background-image:url(/PCNRequestApprovalWeb/spring/a4j_3_2_1-SNAPSHOTorg.richfaces.renderkit.html.gradientimages.OrderingListButtonGradient/DATB/eAH7.....3vHmAAaGQWj);
color:#000000;
font-family:Arial,Verdana,sans-serif;
font-size:11px;
}
.rich-list-picklist-button-light {
margin:0px;
background-color:#C6DEFF;
border-color:#E79A00;
background-image:url(/PCNRequestApprovalWeb/spring/a4j_3_2_1-SNAPSHOTorg.richfaces.renderkit.html.gradientimages.OrderingListButtonGradient/DATB/eAH7.....3vHmAAaGQWj);
color:#000000;
font-family:Arial,Verdana,sans-serif;
font-size:11px;
}
.rich-list-picklist-button-press {
margin:0px;
background:transparent none repeat-x scroll left top;
border-style:solid;
padding:2px 0pt 0pt 2px;
}
--
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
16 years, 8 months
[JBoss JIRA] Created: (RF-3033) a4j:support - oncomplete handle js-code incorrect
by Andreas Höhmann (JIRA)
a4j:support - oncomplete handle js-code incorrect
-------------------------------------------------
Key: RF-3033
URL: http://jira.jboss.com/jira/browse/RF-3033
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Environment: myfaces 1.2.2
jdk 1.5
tomcat 6.0.14
Reporter: Andreas Höhmann
I have a selectbox with 5 options: 1..4 numbers and -1 as a "special value" :)
If the user select the special value i want open a dialog ... here is my code:
<h:selectOneMenu id="quantity" value="#{bean.quantity}" styleClass="addToBasketAmount">
<c:forEach begin="1" end="3" var="i">
<f:selectItem itemValue="#{i * quantity}"/>
</c:forEach>
<f:selectItem itemValue="#{bean.userQuantity}"/>
<f:selectItem itemValue="-1" itemLabel="[enter]" />
<a4j:support event="onchange"
oncomplete="if(this.value == -1){Richfaces.showModalPanel('orderQuantityDialog')}" />
</h:selectOneMenu>
The dialog will not open ... but ... if i change the code to this:
<h:selectOneMenu id="quantity" value="#{bean.quantity}" styleClass="addToBasketAmount">
<c:forEach begin="1" end="3" var="i">
<f:selectItem itemValue="#{i * quantity}"/>
</c:forEach>
<f:selectItem itemValue="#{bean.userQuantity}"/>
<f:selectItem itemValue="-1" itemLabel="[enter]" />
<a4j:support event="onchange"
oncomplete="alert(this.value);if(this.value == -1){Richfaces.showModalPanel('orderQuantityDialog')}" />
</h:selectOneMenu>
a alertbox is shown (-1) and then the dialog is shown.
is this a bug?
--
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
16 years, 8 months
[JBoss JIRA] Created: (RF-3246) ComponentControl do not submit f:params to ContextMenu
by Ludovic Dussart (JIRA)
ComponentControl do not submit f:params to ContextMenu
------------------------------------------------------
Key: RF-3246
URL: http://jira.jboss.com/jira/browse/RF-3246
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Environment: JSG 1.2_04
Reporter: Ludovic Dussart
Priority: Blocker
ComponentControl do not transmit the f:parameters to the contextMenu.
<rich:componentControl event="onclick" for="menu1" operation="show" rendered="#{ligne.zoneA.rendererMenu}">
<f:param value="#{ligne.zoneA.dropValue}" name="zone"/>
<f:param value="#{ligne.id}" name="ligne"/>
</rich:componentControl>
<rich:contextMenu attached="false" id="menu1" submitMode="ajax">
<rich:menuItem value="Supprimer" actionListener="#{craBean.processMenu}" reRender="ZoneDrop1">
<a4j:actionparam name="delete" assignTo="#{craBean.paramMenu}" value="{zone}"/>
<a4j:actionparam name="numeroLigne" assignTo="#{craBean.idLine}" value="{ligne}"/>
</rich:menuItem>
...
</rich:contextMenu>
NB : This code works with RF 3.1.4 but not with 3.2.0 and 3.2.0SR1
Log :
09:39:49,640 ERROR [STDERR] 25 avr. 2008 09:39:49 javax.faces.event.MethodExpressionActionListener processAction
GRAVE: Received 'java.lang.NullPointerException' when invoking action listener '#{craBean.processMenu}' for component 'j_id_jsp_388773205_5pc4'
09:39:49,656 ERROR [STDERR] 25 avr. 2008 09:39:49 javax.faces.event.MethodExpressionActionListener processAction
GRAVE: java.lang.NullPointerException
...
--
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
16 years, 8 months