[JBoss JIRA] Created: (RF-10621) PanelMenuGroup - event order
by Anton Belevich (JIRA)
PanelMenuGroup - event order
-----------------------------
Key: RF-10621
URL: https://issues.jboss.org/browse/RF-10621
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Environment: Metamer, tomcat 7, chromium 9
Reporter: Anton Belevich
Assignee: Nick Belaevski
Set event handlers: onbeforeswitch, onbeforecollapse, onbeforeselect, onselect, oncollapse, onswitch
so we have incorrent event order: onbeforeselect, onbeforeswitch, onbeforecollapse, onselect, oncollapse, onswitch
so the right order must be: onbeforeswitch, onbeforecollapse, onbeforeselect, onselect, oncollapse, onswitch
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[JBoss JIRA] Created: (RF-10617) autocomplete: submit of the new value broken
by Ilya Shaikovsky (JIRA)
autocomplete: submit of the new value broken
--------------------------------------------
Key: RF-10617
URL: https://issues.jboss.org/browse/RF-10617
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input, regression
Affects Versions: 4.0.0.Milestone6
Reporter: Ilya Shaikovsky
Priority: Critical
<h:form>
<rich:autocomplete mode="cachedAjax" tokens=", " minChars="0"
autoFill="false" selectFirst="false" id="ac2" value="#{autocompleteBean.svalue}" var="a"
autocompleteMethod="#{autocompleteBean.autocomplete}" fetchValue="#{a.state}">
<h:outputText value="#{a.state}" />
<a4j:ajax event="change" render="out2"/>
</rich:autocomplete>
<h:outputText value="#{autocompleteBean.svalue}" id="out2"/>
</h:form>
type a - List appears fine
choose any entry - applied to input fine. (e.g. Arizona)
blur the field - "a" appears instead of Arizona in input text.
hidden input value which set as submitted value contains just "a"
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[JBoss JIRA] Created: (RF-10618) autocomplete: unnesessary request on item selection
by Ilya Shaikovsky (JIRA)
autocomplete: unnesessary request on item selection
---------------------------------------------------
Key: RF-10618
URL: https://issues.jboss.org/browse/RF-10618
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.Milestone6
Reporter: Ilya Shaikovsky
Assignee: Nick Belaevski
Priority: Minor
<h:form>
<rich:autocomplete mode="cachedAjax" tokens=", " minChars="0"
autoFill="false" selectFirst="false" id="ac2"
value="#{autocompleteBean.svalue}" var="a"
autocompleteList="#{autocompleteBean.autocompleteList}">
</rich:autocomplete>
<h:outputText value="#{autocompleteBean.svalue}" id="out2" />
</h:form>
focus input
type a - Ajax request sent and list populated - OK
select first item. - item selected and one more Ajax request sent. - FAIL. no need in one more request.
This one is minor and I believe future. minor because in that case list returned not according to "a" letter but all the states starting on different letters.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month