[JBoss JIRA] (RF-13057) Kitchensink Archetype: update enterprise version of JBoss BOM
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/RF-13057?page=com.atlassian.jira.plugin.s... ]
RH Bugzilla Integration commented on RF-13057:
----------------------------------------------
Pavol Pitonak <ppitonak(a)redhat.com> made a comment on [bug 974084|https://bugzilla.redhat.com/show_bug.cgi?id=974084]
First, issues should have ON_QA status when you want us to verify fix.
Brian, archetype itself seems to be OK.
Marek, I need to use both EAP 6.0.1 and 6.1.0 Maven repositories for building generated project because of missing slf4j dependency:
[ERROR] Failed to execute goal on project richfaces-kitchensink: Could not resolve dependencies for project org.richfaces.tests.archetypes:richfaces-kitchensink:war:4.3.2.Final: Could not find artifact org.slf4j:jcl-over-slf4j:jar:1.6.1-redhat-2 in wfk-latest-enterprise-repository (file:///mnt/hudson_workspace/workspace/richfaces-wfk-2.3-archetype-kitchensink-ftest/wfk-tools/maven-bootstrap/jboss-wfk-2.3.0-maven-repository) -> [Help 1]
This is part of mvn dependency:tree:
org.richfaces.tests.archetypes:richfaces-kitchensink:war:4.3.2.Final
+- org.richfaces.core:richfaces-core-impl:jar:4.3.2.Final-redhat-1:compile
| +- org.richfaces.core:richfaces-core-api:jar:4.3.2.Final-redhat-1:compile
| +- net.sourceforge.cssparser:cssparser:jar:0.9.5:compile
| | \- org.w3c.css:sac:jar:1.3:compile
| +- com.google.guava:guava:jar:13.0.1-redhat-1:compile
| \- org.apache.james:apache-mime4j:jar:0.6-redhat-2:compile
| \- org.slf4j:jcl-over-slf4j:jar:1.6.1-redhat-2:compile
| \- org.slf4j:slf4j-api:jar:1.6.1-redhat-2:compile
> Kitchensink Archetype: update enterprise version of JBoss BOM
> -------------------------------------------------------------
>
> Key: RF-13057
> URL: https://issues.jboss.org/browse/RF-13057
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: archetype
> Affects Versions: 4.3.2
> Reporter: Jan Papousek
> Fix For: 4.3.3
>
>
> from "1.0.4.Final-redhat-wfk-1" to "1.0.4.Final-redhat-wfk-2"
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 5 months
[JBoss JIRA] (RF-11088) rich:select modify manualInput behavior to avoid single item scoped item list popup when editing value
by J W (JIRA)
[ https://issues.jboss.org/browse/RF-11088?page=com.atlassian.jira.plugin.s... ]
J W edited comment on RF-11088 at 7/1/13 6:21 AM:
--------------------------------------------------
I have edited the select.js in the following way to get it work:
{code}__onBtnMouseDown: function(e) {{code}
and
{code}__keydownHandler: function(e) {
case rf.KEYS.DOWN:{code}
do no longer call *this.__updateItems();* , but a custom function which gets the original items from cache, adds them to the list and displays them:
{code}__origItems: function() {
var newValue = this.__getValue();
newValue = (newValue != this.defaultLabel) ? newValue : "";
this.__updateItemsFromCache(newValue);
if (this.originalItems.length > 0 && this.enableManualInput) {
var newItems = this.originalItems;
var items = $(newItems);
this.list.__setItems(items);
$(document.getElementById(this.id + "Items")).empty().append(items);
this.__save();
}
},
{code}
This is working fine at the moment. The only thing missing is that the current selected value does not get highlighted in the popuplist, but this seems to be a general issue, because it is the same with enableManualInput=false.
was (Author: jigg4):
I have edited the select.js in the following way to get it work:
{code}__onBtnMouseDown: function(e) {{code}
and
{code}__keydownHandler: function(e) {
case rf.KEYS.DOWN:{code}
do no longer call *this.__updateItems();* , but a custom function which gets the original items from cache, adds them to the list and displays them:
{code}__origItems: function() {
var newValue = this.__getValue();
newValue = (newValue != this.defaultLabel) ? newValue : "";
this.__updateItemsFromCache(newValue);
if (this.originalItems.length > 0 && this.enableManualInput) {
var newItems = this.originalItems;
var items = $(newItems);
this.list.__setItems(items);
$(document.getElementById(this.id + "Items")).empty().append(items);
}
},
{code}
This is working fine at the moment. The only thing missing is that the current selected value does not get highlighted in the popuplist, but this seems to be a general issue, because it is the same with enableManualInput=false.
> rich:select modify manualInput behavior to avoid single item scoped item list popup when editing value
> ------------------------------------------------------------------------------------------------------
>
> Key: RF-11088
> URL: https://issues.jboss.org/browse/RF-11088
> Project: RichFaces
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Components: component-selects
> Affects Versions: 4.0.0.Final, 4.0.1.Milestone1, 4.1.0.Milestone1
> Reporter: Justin Wyer
> Assignee: Justin Wyer
> Labels: rich:select
> Fix For: 5-Tracking
>
>
> rich:select has usability issues when using enableManualInput="true" this will address the issues discussed in the forum post. My current idea is to attempt to display the full item list and auto highlight the input's value.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 5 months
[JBoss JIRA] (RF-11088) rich:select modify manualInput behavior to avoid single item scoped item list popup when editing value
by J W (JIRA)
[ https://issues.jboss.org/browse/RF-11088?page=com.atlassian.jira.plugin.s... ]
J W edited comment on RF-11088 at 7/1/13 6:08 AM:
--------------------------------------------------
I have edited the select.js in the following way to get it work:
{code}__onBtnMouseDown: function(e) {{code}
and
{code}__keydownHandler: function(e) {
case rf.KEYS.DOWN:{code}
do no longer call *this.__updateItems();* , but a custom function which gets the original items from cache, adds them to the list and displays them:
{code}__origItems: function() {
var newValue = this.__getValue();
newValue = (newValue != this.defaultLabel) ? newValue : "";
this.__updateItemsFromCache(newValue);
if (this.originalItems.length > 0 && this.enableManualInput) {
var newItems = this.originalItems;
var items = $(newItems);
this.list.__setItems(items);
$(document.getElementById(this.id + "Items")).empty().append(items);
}
},
{code}
This is working fine at the moment. The only thing missing is that the current selected value does not get highlighted in the popuplist, but this seems to be a general issue, because it is the same with enableManualInput=false.
was (Author: jigg4):
I have edited the select.js in the following way to get it work:
{code}__onBtnMouseDown: function(e) {{code}
and
{code}__keydownHandler: function(e) {
case rf.KEYS.DOWN:{code}
do no longer call *this.__updateItems();* , but a custom function which gets the original items from cache, adds them to the list and displays them:
{code}__origItems: function() {
var newValue = this.__getValue();
newValue = (newValue != this.defaultLabel) ? newValue : "";
this.__updateItemsFromCache(newValue);
if (this.originalItems.length > 0 && this.enableManualInput) {
var newItems = this.originalItems;
var items = $(newItems);
this.list.__setItems(items);
$(document.getElementById(this.id + "Items")).empty().append(items);
}
},
{code}
This is working fine at the moment. The only thing missing is that the previous selected value "rf-sel-sel" is not marked in the HTML anymore after clicking again on the list. Any ideas?
> rich:select modify manualInput behavior to avoid single item scoped item list popup when editing value
> ------------------------------------------------------------------------------------------------------
>
> Key: RF-11088
> URL: https://issues.jboss.org/browse/RF-11088
> Project: RichFaces
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Components: component-selects
> Affects Versions: 4.0.0.Final, 4.0.1.Milestone1, 4.1.0.Milestone1
> Reporter: Justin Wyer
> Assignee: Justin Wyer
> Labels: rich:select
> Fix For: 5-Tracking
>
>
> rich:select has usability issues when using enableManualInput="true" this will address the issues discussed in the forum post. My current idea is to attempt to display the full item list and auto highlight the input's value.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 5 months
[JBoss JIRA] (RF-12613) rich:select with enablemanualinput selects wrong items
by J W (JIRA)
[ https://issues.jboss.org/browse/RF-12613?page=com.atlassian.jira.plugin.s... ]
J W commented on RF-12613:
--------------------------
Brian i have done a pull request for [RF-11021|https://issues.jboss.org/browse/RF-11021] which is also referring to select.js. I could include the mentioned workarround in the pull request.
> rich:select with enablemanualinput selects wrong items
> ------------------------------------------------------
>
> Key: RF-12613
> URL: https://issues.jboss.org/browse/RF-12613
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 4.1.0.Final, 4.3.0.M2
> Reporter: geert olaerts
> Fix For: 5-Tracking
>
> Original Estimate: 30 minutes
> Remaining Estimate: 30 minutes
>
> When using rich:select with enablemanualinput = "true", the wrong item might be selected. If the list of possible items is (in this order): "test test" and "test" and the user selects "test" richfaces will select "test test" as input. The same happens if the user types "test". If the list is "test" and "test test" and the user selects or types "test" the correct item is selected.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 5 months