[JBoss JIRA] Created: (RF-11203) samples rich:tree and Tree Adaptors does not render folder icons between plus signes for nodes expanding
by Juraj Huska (JIRA)
samples rich:tree and Tree Adaptors does not render folder icons between plus signes for nodes expanding
--------------------------------------------------------------------------------------------------------
Key: RF-11203
URL: https://issues.jboss.org/browse/RF-11203
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: showcase
Affects Versions: 4.1.0.Milestone1
Environment: richfaces-showcase-4.1.0.20110805-M1,
containers: JBoss AS 6 and 7
browsers: Firefox 5 and Chrome 12
Reporter: Juraj Huska
Attachments: treeWrong.png
Samples rich:tree and Tree Adaptors does not render folder icons between plus signes for nodes expanding. And this warning is rendered to container console:
17:46:14,760 WARNING [javax.enterprise.resource.webcontainer.jsf.application] (http-localhost.localdomain-127.0.0.1-8080-5) JSF1064: Unable to find or serve resource, leaf_icon.gif, from library, org.richfaces.images.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] Created: (RF-11332) Improve AutoComplete component to support Object values separate from AutoCompleteinput field
by Cody Lerum (JIRA)
Improve AutoComplete component to support Object values separate from AutoCompleteinput field
---------------------------------------------------------------------------------------------
Key: RF-11332
URL: https://issues.jboss.org/browse/RF-11332
Project: RichFaces
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Affects Versions: 4.1.0.Milestone1
Reporter: Cody Lerum
<rich:autocomplete id="client" value="#{newService.client}" autocompleteMethod="#{entitySearch.appEntityClients}" var="_a" fetchValue="#{_a}">
<h:outputText value="#{_a.name}" />
</rich:autocomplete>
Given the above code the fetchValue which is placed in the generated inputText box is what is actually submitted with the form.
To support POJO selects what is needed is to have a value and a valueLabel so that the fetchValue can be displayed to the user but the acutal converted object value is submitted to the form.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] Created: (RF-11341) Metamer: a4j:ajax: rerender all componentes on page causes not update after submit
by Ján Jamrich (JIRA)
Metamer: a4j:ajax: rerender all componentes on page causes not update after submit
----------------------------------------------------------------------------------
Key: RF-11341
URL: https://issues.jboss.org/browse/RF-11341
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.1.0.Milestone2
Environment: RichFaces 4.1.0-SNAPSHOT r.d0f9c11eb0dacc1444c0a3182b12567e28aef6bc
Metamer 4.1.0-SNAPSHOT r.unknown
Mojarra 2.1.2-FCS
Apache Tomcat 7.0.19
Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux
Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.30 (KHTML, like Gecko) Ubuntu/10.04 Chromium/12.0.742.112 Chrome/12.0.742.112 Safari/534.30
Reporter: Ján Jamrich
On page with a4j:ajax within h:commandButton is a4j:panel which display values from submitted form.
When submit first value, it is immediately displayed in outputPanel. Then do the same for second value.
But if then click on "rerender all" button in Metamer, and then type and submit another value, it is not displayed in output panel. (this value remains only in input). If then click on submit button again, previous value appears in input, and the same in outputPanel.
So, rerender all on page causes that ajax form doesn't submit values typed into form correctly (loss this data)
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] Created: (RF-11360) UI Iteration tests failing
by Brian Leathem (JIRA)
UI Iteration tests failing
--------------------------
Key: RF-11360
URL: https://issues.jboss.org/browse/RF-11360
Project: RichFaces
Issue Type: Sub-task
Security Level: Public (Everyone can see)
Components: component-ScrollableDataTable
Reporter: Brian Leathem
Fix For: 4.1.0.Milestone2
UI Iteration tests are failing:
Failed tests:
testOutDataScrollerFirstLastButtons(org.richfaces.renderkit.DataScrollerRenderTest)
testInnerDataScrollerFirstLastButtons(org.richfaces.renderkit.DataScrollerRenderTest)
testOutDataScrollerNextPreviousButtons(org.richfaces.renderkit.DataScrollerRenderTest)
testInnerDataScrollerNextPreviousButtons(org.richfaces.renderkit.DataScrollerRenderTest)
testOutDataScrollerFastButtons(org.richfaces.renderkit.DataScrollerRenderTest)
testInnerDataScrollerFastButtons(org.richfaces.renderkit.DataScrollerRenderTest)
testOutDataScrollerDigitalButtons(org.richfaces.renderkit.DataScrollerRenderTest)
testInnerDataScrollerDigitalButtons(org.richfaces.renderkit.DataScrollerRenderTest)
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] Created: (RF-11373) rich:autocomplete table layout doesn't use rich:column styleClass and style
by Stephan Meisinger (JIRA)
rich:autocomplete table layout doesn't use rich:column styleClass and style
---------------------------------------------------------------------------
Key: RF-11373
URL: https://issues.jboss.org/browse/RF-11373
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.Final
Environment: Tomcat 6.0.32
Mojarra 2.0.6
Richfaces 4.0.0.Final
Reporter: Stephan Meisinger
if rich:autocomplete is used with layout table, rich:columns configured style and styleClass aren't used. Example configuration:
<rich:autocomplete mode="ajax" autocompleteMethod="#{Search.suggest}" value="#{Search.searchString}" var="suggest" layout="table" fetchValue="#{suggest.name}">
<rich:column styleClass="suggestText">
<h:outputText value="#{suggest.name}"/>
</rich:column>
<rich:column style="width:10px">
<h:outputText value="#{suggest.count}"/>
</rich:column>
</rich:autocomplete>
result into:
<table class="rf-au-tbl" id="searchTemplateForm:j_idt85Items">
<tbody><tr class="rf-au-itm">
<td class="rf-au-fnt rf-au-inp">text</td>
<td class="rf-au-fnt rf-au-inp">1</td>
</tr></tbody>
</table>
should be:
<table class="rf-au-tbl" id="searchTemplateForm:j_idt85Items">
<tbody><tr class="rf-au-itm">
<td class="rf-au-fnt rf-au-inp suggestText">text</td>
<td class="rf-au-fnt rf-au-inp" style="width: 10px">1</td>
</tr></tbody>
</table>
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] Created: (RF-11396) Drop Down Menu - displaying in accordion (Google Chrome)
by Jan Papousek (JIRA)
Drop Down Menu - displaying in accordion (Google Chrome)
--------------------------------------------------------
Key: RF-11396
URL: https://issues.jboss.org/browse/RF-11396
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-menu
Affects Versions: 4.1.0.Milestone2
Environment: RichFaces 4.1.0.20110910-M2 r.0d4276b62c8366e0eaa1b7cd1c350d373e65ed79
Metamer 4.1.0.20110910-M2 r.22701
Mojarra 2.1.2-FCS
Apache Tomcat 7.0.16
OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.112 Safari/534.30
RichFaces 4.1.0.20110910-M2 r.0d4276b62c8366e0eaa1b7cd1c350d373e65ed79
Metamer 4.1.0.20110910-M2 r.22701
Apache MyFaces JSF-2.1 Core Impl 2.1.1
Apache Tomcat 7.0.16
OpenJDK Runtime Environment 1.6.0_22-b22 @Linux
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.112 Safari/534.30
Reporter: Jan Papousek
Attachments: dropDownMenu-accordion-correct.png, dropDownMenu-accordion-wrong.png, dropDownMenu-correct.png
When the menu is placed in accordion and google chrome browser is used, the menu isn't displayed correctly. In other browsers (firefox, opera) the scrollbar appears on the right side of accordion.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] Created: (RF-11400) Metamer: rich:collapsibleSubTable: sorting don't work on first click
by Ján Jamrich (JIRA)
Metamer: rich:collapsibleSubTable: sorting don't work on first click
--------------------------------------------------------------------
Key: RF-11400
URL: https://issues.jboss.org/browse/RF-11400
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: cdk
Affects Versions: 4.1.0.Milestone2
Environment: RichFaces 4.1.0.20110910-M2 r.
Metamer 4.1.0.20110910-M2 r.22701
Mojarra 2.0.4-b09-jbossorg-4
JBoss Web 7.0.1.Final
Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux
Mozilla/5.0 (X11; Linux i686; rv:7.0) Gecko/20100101 Firefox/7.0
Reporter: Ján Jamrich
Fix For: 4.1.0.Milestone2
When open page with collapsibleSubTable and try to sort by "Title", on first click nothing happens. Need to click again to get first sorting. Then every next click causes new sorting in reverse order. The same behavior for rest of columns ("Birthdate", "Name")
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months