[JBoss JIRA] (RF-13308) Autocomplete: clientFilterFunction doesn't work in Firefox
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-13308?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč edited comment on RF-13308 at 11/7/13 3:46 AM:
----------------------------------------------------------
[~ppitonak], I have checked with Firefox 24 and 25, following exactly the instructions you have given, and everything works fine.
Could you please verify?
was (Author: lfryc):
[~ppitonak], I have checked with Firefox 24 and 25 and everything works fine.
Could you please verify?
> Autocomplete: clientFilterFunction doesn't work in Firefox
> ----------------------------------------------------------
>
> Key: RF-13308
> URL: https://issues.jboss.org/browse/RF-13308
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-input, regression
> Affects Versions: 5.0.0.Alpha2
> Environment: RichFaces 5.0.0-SNAPSHOT
> Metamer 5.0.0-SNAPSHOT
> Mojarra 2.1.19
> EAP 6.1.1
> Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux
> Firefox 24 @ Linux x86_64
> Reporter: Pavol Pitonak
> Assignee: Lukáš Fryč
> Priority: Critical
> Fix For: 5.0.0.Alpha2
>
>
> # deploy Metamer and open http://localhost:8080/metamer/faces/components/richAutocomplete/filtering...
> # set attribute mode to "client"
> # set attribute clientFilterFunction to "customClientFilterFunction"
> # type "no" to the autocomplete
> # select "Raleigh of North Carolina"
> # click outside of autocomplete in order to send selected value to the server
> # check that output contains "North Carolina"
> result:
> * works fine in Chrome 30
> * in Firefox 24, after you type "no", popup with suggestions is not displayed
> * works fine in RichFaces 4.3.4.Final
--
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, 2 months
[JBoss JIRA] (RF-13304) Autocomplete: value change listener doesn't work
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-13304?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč resolved RF-13304.
-----------------------------
Resolution: Done
> Autocomplete: value change listener doesn't work
> ------------------------------------------------
>
> Key: RF-13304
> URL: https://issues.jboss.org/browse/RF-13304
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-input, regression
> Affects Versions: 5.0.0.Alpha2
> Environment: RichFaces 5.0.0-SNAPSHOT
> Metamer 5.0.0-SNAPSHOT
> EAP 6.1.1
> Mojarra 2.1.19-jbossorg-1
> Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux
> Firefox 24 @ Linux x86_64
> Reporter: Pavol Pitonak
> Assignee: Lukáš Fryč
> Priority: Critical
> Fix For: 5.0.0.Alpha2
>
>
> # deploy Metamer and open http://localhost:8080/metamer/faces/components/richAutocomplete/autocompl... in Firefox 24
> # type 'h' into autocomplete
> # select 'Hawaii'
> # click outside the autocomplete so that the value is sent to the server
> # check phases panel in header
> result:
> * you can see "* 1 value changed: null -> Hawaii" and "* 2 value changed" for a short while
> * after ca. 1s yet another ajax request is done and only "* 2 value changed" is visible
> * in Chrome 30, the second ajax request is not fired
> * in Chrome 30, when you select some nonexisting value in autocomplete, e.g. "xxx", it behaves the same as Firefox 24
> * in RichFaces 4.3.4.Final, output of both listeners is visible, it is a regression
--
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, 2 months
[JBoss JIRA] (RF-13319) Strange scroll behavier of rich:autocomplete field in IE9/10
by Ronny Schöne (JIRA)
[ https://issues.jboss.org/browse/RF-13319?page=com.atlassian.jira.plugin.s... ]
Ronny Schöne updated RF-13319:
------------------------------
Description:
Hi
i have a strange scroll behaviour in a rich:autocomplete list.
The list has a lot of elements so the list has a scrollbar.
If i open the list and scroll a little bit with the scrollbar and move the mouse to the elements, an other element which is not within the viewport of the list is shown in the textfield and the list scrolls automatically.
Here is the source code, there is nothing special:
{code}
<rich:autocomplete
id="inField"
requiredMessage="Add value."
style="vertical-align: middle"
mode="client" selectFirst="false"
showButton="true" minChars="1"
value="${bean.input}"
autocompleteList="${bean.definedInputList}"
onblur="#{rich:component('inField')}.hidePopup();" />
{code}
Link to a example video: https://vimeo.com/78525787
was:
Hi
i have a strange scroll behaviour in a rich:autocomplete list.
The list has a lot of elements so the list has a scrollbar.
If i open the list and scroll a little bit with the scrollbar and move the mouse to the elements, an other element which is not within the viewport of the list is shown in the textfield.
Here is the source code, there is nothing special:
{code}
<rich:autocomplete
id="inField"
requiredMessage="Add value."
style="vertical-align: middle"
mode="client" selectFirst="false"
showButton="true" minChars="1"
value="${bean.input}"
autocompleteList="${bean.definedInputList}"
onblur="#{rich:component('inField')}.hidePopup();" />
{code}
Link to a example video: https://vimeo.com/78525787
> Strange scroll behavier of rich:autocomplete field in IE9/10
> ------------------------------------------------------------
>
> Key: RF-13319
> URL: https://issues.jboss.org/browse/RF-13319
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-input
> Reporter: Ronny Schöne
> Fix For: 4.5-Tracking
>
>
> Hi
> i have a strange scroll behaviour in a rich:autocomplete list.
> The list has a lot of elements so the list has a scrollbar.
> If i open the list and scroll a little bit with the scrollbar and move the mouse to the elements, an other element which is not within the viewport of the list is shown in the textfield and the list scrolls automatically.
> Here is the source code, there is nothing special:
> {code}
> <rich:autocomplete
> id="inField"
> requiredMessage="Add value."
> style="vertical-align: middle"
> mode="client" selectFirst="false"
> showButton="true" minChars="1"
> value="${bean.input}"
> autocompleteList="${bean.definedInputList}"
> onblur="#{rich:component('inField')}.hidePopup();" />
> {code}
> Link to a example video: https://vimeo.com/78525787
--
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, 2 months
[JBoss JIRA] (RF-12913) Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12913?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč edited comment on RF-12913 at 11/6/13 1:20 PM:
----------------------------------------------------------
Automation of such a solution assumes we will integrate Grunt build into Maven build.
We can make running of those tests part of release process so far.
was (Author: lfryc):
Automation of such a solution assumes we will integrate Grunt into our build.
We can make it part of release process so far.
> Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts
> ----------------------------------------------------------------------
>
> Key: RF-12913
> URL: https://issues.jboss.org/browse/RF-12913
> Project: RichFaces
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Components: qe, tests - functional
> Reporter: Lukáš Fryč
> Fix For: 5.0.0.Alpha2
>
>
> There is Arquillian QUnit extension [1] for running QUnit tests.
> Use this extension to replace currenct HtmlUnit based runner.
> Communicate with the author to make it work and report any requests for enhancements.
> [1] https://github.com/qa/arquillian-qunit/
--
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, 2 months