[JBoss JIRA] (RF-11680) rich; picklist java.lang.ArrayStoreException:SelectManyRenderBase (the renderer base used for pickLlist and orderingList).
by Adrien Adrien (Created) (JIRA)
rich;picklist java.lang.ArrayStoreException:SelectManyRenderBase (the renderer base used for pickLlist and orderingList).
-------------------------------------------------------------------------------------------------------------------------
Key: RF-11680
URL: https://issues.jboss.org/browse/RF-11680
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-output
Affects Versions: 4.1.0.Milestone4
Environment: AS 7 / RF4.m3 / sevent jdk 1.6_24
Reporter: Adrien Adrien
Priority: Critical
Fix For: 4.1.0.CR1
impossible to click on rich:tab composed of picklist :
from forum :
------------
java.lang.ArrayStoreException: java.lang.String
at org.richfaces.renderkit.SelectManyHelper.getConvertedValue(SelectManyHelper.java:275)
at org.richfaces.renderkit.SelectManyRendererBase.getConvertedValue(SelectManyRendererBase.java:108)
at javax.faces.component.UIInput.getConvertedValue(UIInput.java:1030)
at javax.faces.component.UIInput.validate(UIInput.java:960)
at javax.faces.component.UIInput.executeValidate(UIInput.java:1233)
at javax.faces.component.UIInput.processValidators(UIInput.java:698)
at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:1214)
at org.richfaces.component.AbstractTogglePanel.processValidators(AbstractTogglePanel.java:260)
I can see that a call to AbstractTogglePanel.processValidators is endis up in the SelectManyRenderBase (the renderer base used for pickLlist and orderingList). This is most likely a bug.
Would you please file a jira issue? and we'll see about gettting this resolved.
--
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
13 years
[JBoss JIRA] Created: (RF-10992) dragValue expression is evaluated to null in customcomponent
by Adrian Höhn (JIRA)
dragValue expression is evaluated to null in customcomponent
------------------------------------------------------------
Key: RF-10992
URL: https://issues.jboss.org/browse/RF-10992
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-drag/drop
Affects Versions: 4.0.0.Final
Environment: JSF2 environment with Richfaces 4 Final
Reporter: Adrian Höhn
When the dragValue is set in a customcomponent, it's always evaluated to null. (dropEvent.getDragValue() == null)
If a stringvalue is set instead, the value is submitted correctly.
Example:
<rich:dragSource type="sometype" dragValue="#{cc.attrs.myvalue}"/>
same code outside of the customcomponent works fine.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] Created: (RF-11067) rich:autocomplete popups with suggestions does not reflect the value in input
by Juraj Huska (JIRA)
rich:autocomplete popups with suggestions does not reflect the value in input
-----------------------------------------------------------------------------
Key: RF-11067
URL: https://issues.jboss.org/browse/RF-11067
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: examples
Affects Versions: 4.1.0.Milestone1
Environment: richfaces-showcase
commit 4a534c358ff5903429609ff065fc27bae6fec2c0
Reporter: Juraj Huska
In richfaces-showcase, demo for rich:autocomplete, sample Custom Popup Layouts, popup with suggestions does not reflect what is typed in the input, it always shows the first row of suggestion.
For example when I type v, it should render popup with suggestion Vermont, but instead of it suggest Alabama.
This is corrected when something is chosen, for example Alabama, then suggestions work properly.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] Created: (RF-11448) tabPanel activeItem not working syncrhonously with bean.activeItem
by Yavuz Kavus (JIRA)
tabPanel activeItem not working syncrhonously with bean.activeItem
------------------------------------------------------------------
Key: RF-11448
URL: https://issues.jboss.org/browse/RF-11448
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component
Affects Versions: 4.1.0.Milestone1, 4.0.0.Final
Environment: windows 7, glassfish 3, richfaces 4.0
Reporter: Yavuz Kavus
<r:tabPanel activeItem="#{bean.activeItem}" ..>
<r:tab name="tab1">...</r:tab>
<r:tab name="tab2">...</r:tab>
<r:tab name="tab3">...</r:tab>
</r:tabPanel>
* when page first displayed, in bean constructor activeItem set to "tab1" and tab1 shown on first display.
* clicking "tab2" whether in ajax or server, not calls setActiveItem in bean.
* clicking "tab3", calls setActiveItem(String item), but item="tab2". one step behind(previously selected tab).
* clicking "tab2", calls setActiveItem with parameter "tab3", again one step behind actual selected tab.
* and so on.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years
[JBoss JIRA] (RF-11617) rich:pickList 4.1.0.M3 - valueChangeListener not firing correctly
by Brendan Healey (Created) (JIRA)
rich:pickList 4.1.0.M3 - valueChangeListener not firing correctly
-----------------------------------------------------------------
Key: RF-11617
URL: https://issues.jboss.org/browse/RF-11617
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-selects
Affects Versions: 4.1.0.Milestone3
Environment: Mojarra 2.1.3, glassfish 3.1.1, Windows 7, IE8 & Chrome browsers
Reporter: Brendan Healey
I have two List<String>, selectedList & wholeList. Using the add/remove(all) buttons
the value change listener is not executed on the server unless the browser window is
minimised, tested on IE8 & Chrome. This has been tested with the converter= attribute
and a child f:converter tag. The child a4j:ajax tag is required.
<rich:pickList value="#{leagueMgrHomepageView.selectedList}"
onchange="fred()"
converter="convertHashMap"
valueChangeListener="#{leagueMgrHomepageView.testVCL}">
<a4j:ajax/>
<f:selectItems value="#{leagueMgrHomepageView.wholeList}"
var="var" itemLabel="#{var}" itemValue="#{var}"/>
</rich:pickList>
public void testVCL(ValueChangeEvent event) {
Log.log("testVCL");
}
Looks like a browser side event problem.
--
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
13 years
[JBoss JIRA] (RF-11010) richfaces-showcase: fix grammatical issues
by Brian Leathem (Updated) (JIRA)
[ https://issues.jboss.org/browse/RF-11010?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-11010:
-------------------------------
Fix Version/s: 4.1.0.Final
> richfaces-showcase: fix grammatical issues
> ------------------------------------------
>
> Key: RF-11010
> URL: https://issues.jboss.org/browse/RF-11010
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: examples
> Affects Versions: 4.0.0.Final
> Environment: richfaces-showcase
> Reporter: Juraj Huska
> Assignee: Brian Leathem
> Priority: Trivial
> Fix For: 4.1.0.Final
>
>
> a4j:status - sample: referenced status, there is adress instead of address
> a4j:status - sample: status simple, there is succesfully instead of successfully
> a4j:attachQueue - there is button with text label submit but the text above says that there should be button with label save
> a4j:mediaOutput - all names of selects are Color1, but there should be Color1, Color2, Color3
> rich:graphValidator - 1.in my opinion there should be the minimal and maximal length of password in the text which describes this component, 2. there is typo when passwords are typed correctly in info message, there is succesfully instead of successfully.
> rich:message - in the text is written click "Validate" button, but there is "Ajax Validate" button
> rich:messages - same as in rich:message
> rich:dataTable - sample: DataTableFiltering - there is a filter for mileage, where is filter, which should filter values which are less than filter value, since there is < sign, but actually the filter works in a way less or equal.
> rich:poppupPanel - there is coarse instead of course in the text description for component, in the sample for login panel positioning, in the first paragraph of text
> rich:autocomplete - there is: using tokens ', and ' ', but should be using tokens ',' and ' ' in the text for second input
--
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
13 years