[JBoss JIRA] Created: (RF-11092) rich:autocomplete - attribute tabindex doesn't work
by Rene O (JIRA)
rich:autocomplete - attribute tabindex doesn't work
---------------------------------------------------
Key: RF-11092
URL: https://issues.jboss.org/browse/RF-11092
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.1.0.Milestone1
Environment: latest richfaces-4.1.0-SNAPSHOT, IE8, Firefox5, Chrome
Reporter: Rene O
code-snippet to reproduce the issue:
...
<h:form id="testForm">
<h:inputText value="" tabindex="1" />
<rich:autocomplete value="" ... tabindex="2" />
<h:inputText value="" tabindex="3" />
</h:form>
...
If you tab from inputText1, inputText2 will gain the focus, instead of the autocomplete component
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 1 month
[JBoss JIRA] Created: (RF-11073) fileUpload listHeight
by ba nguyen (JIRA)
fileUpload listHeight
---------------------
Key: RF-11073
URL: https://issues.jboss.org/browse/RF-11073
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.Final
Environment: Windows 7
Glassfish v3.1
Eclipse JEE Helios Service Release 1
FireFox 4
Reporter: ba nguyen
<rich:fileUpload
listHeight="1000"
...
</rich:fileUpload>
listHeight is ignored. No documentation regarding this feature in RichFaces 4 final releases.
Referencing issue RF-9737 the fix was version 4 milestone 6. Final version does not carry on the fix.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] Created: (RF-10866) Queue: RF queuing rules applied to any ajax including standard f: one
by Ilya Shaikovsky (JIRA)
Queue: RF queuing rules applied to any ajax including standard f: one
---------------------------------------------------------------------
Key: RF-10866
URL: https://issues.jboss.org/browse/RF-10866
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: core
Affects Versions: 4.0.0.Final
Reporter: Ilya Shaikovsky
Assignee: Nick Belaevski
<a4j:queue requestDelay="1000"></a4j:queue>
<h:form>
<h:inputText value="#{userBean.name}">
<f:ajax event="keyup" render="out" />
</h:inputText>
<h:outputText value="#{userBean.name}" id="out" />
</h:form>
<a4j:log/>
while typing you could see that delay applied and requests combined.
could influence standard/third-party components. So need to review and probably remove. (at least make switchable)
setting tran label just to review early and not for impl.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months
[JBoss JIRA] Created: (RF-10862) Autocomplete: does not perform decode of the behaviors
by Ilya Shaikovsky (JIRA)
Autocomplete: does not perform decode of the behaviors
------------------------------------------------------
Key: RF-10862
URL: https://issues.jboss.org/browse/RF-10862
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.Final
Reporter: Ilya Shaikovsky
http://community.jboss.org/message/598526#598526
checked with
<rich:autocomplete mode="cachedAjax" tokens=", " minChars="0"
autoFill="false" selectFirst="false"
autocompleteMethod="#{autocompleteBean.autocomplete}" valueChangeListener="#{autocompleteBean.vcl}">
<a4j:ajax listener="#{autocompleteBean.list}" event="change"/>
</rich:autocomplete>
<h:inputText>
<a4j:ajax listener="#{autocompleteBean.list}" event="change"/>
</h:inputText>
input calls listener and autocomplete not. Text renderer performs String clientId = decodeBehaviors(context, component);
and in autocomplete there is no such code.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 2 months