[JBoss JIRA] Created: (RF-1499) SuggestionBox - for attribute doesn't work correctly within jstl:foreach
by Hannes Bauer (JIRA)
SuggestionBox - for attribute doesn't work correctly within jstl:foreach
------------------------------------------------------------------------
Key: RF-1499
URL: http://jira.jboss.com/jira/browse/RF-1499
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.2
Environment: Richfaces 3.1.2GA, Glassfish v2, JSF 1.2_06
Reporter: Hannes Bauer
The following code doesn't work correctly:
<c:forEach var="it" items="#{myHandler.iterationList}" >
<p>
<h:outputLabel for="test" value="#{msg.person}"
styleClass="label longLabel" />
<h:inputText id="test"
value="#{myHandler.persons[it].person}"
converter="#{myConverter}"
styleClass="longField">
</h:inputText>
</p>
<rich:suggestionbox id="personSuggestion" for="test"
suggestionAction="#{myHandler.personAutocomplete}" var="result"
fetchValue="#{result.myValue}"
nothingLabel="-----"
first="0" minChars="1"
width="300" height="100">
<h:column>
<h:outputText value="#{result.lastName}" />
</h:column>
</rich:suggestionbox>
</c:forEach>
The suggestionBox works only for the first occurence of <h:inputText id="test"> in the loop.
Presumably, the target value 'test' isn't postfixed as the id of h:inputText (j_id_1, j_id_2, ...)??
Whereas the attribute 'for' in h:outputLabel works in a loop, 'for' doesn't in rich:suggestionBox.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 8 months
[JBoss JIRA] Created: (RF-1100) Drag-n-Drop: dragged item does not scroll up the view port in Firefox
by Brian Preu? (JIRA)
Drag-n-Drop: dragged item does not scroll up the view port in Firefox
---------------------------------------------------------------------
Key: RF-1100
URL: http://jira.jboss.com/jira/browse/RF-1100
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.0
Environment: Mozilla/5.0 (X11; U; Linux i686; de; rv:1.8.1.5) Gecko/20070718 Fedora/2.0.0.5-1.fc7 Firefox/2.0.0.5
Reporter: Brian Preu?
Suppose you have a "drop zone" for dragable items somewhere near the top of your page.
If you got a longer list of dragable item, you scoll down the page, so that the "drop zone" moves out of the view port.
Now try to drag an item with the mouse pointer movement to the "drop zone", which sits outside the view port (on the top).
It's not possible to do this in Firefox 2.0.0.5 on Fedora Core 7. It works fine with Opera 9.2.3.
As a work around you can use the cursor key in Firedox to scroll up the page, while you're still dragging the item.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 8 months
[JBoss JIRA] Created: (RF-1644) <rich:datascroller scrollerlistener="" event is not fired when clicked on the scroller
by Arul Kumaran (JIRA)
<rich:datascroller scrollerlistener="" event is not fired when clicked on the scroller
----------------------------------------------------------------------------------------
Key: RF-1644
URL: http://jira.jboss.com/jira/browse/RF-1644
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Environment: Software
Reporter: Arul Kumaran
<rich:datascroller .... > used to be working in version 3.1.0 and is broken when I moved to 3.2.0-SNAPSHOT version. I moved to this version to incorporate fix on rich:suggestionbox not passing the value of the "var" attribute. After I moved to 3.2.0-SNAPSHOT version the suggestion box issue is fixed but the datascroller stopped working since the scrollerlistener attribute method is not invoked.
e.g.
<rich:datascroller align="center" for="#{for}" maxPages="#{maxPages}" fastStep="#{fastStep}" scrollerListener="#{backingBean.scrollEvent}" pageIndexVar="#{backingBean.pageIndex}" renderIfSinglePage="#{renderIfSinglePage}" oncomplete="handleResize()" />
Issue is : scrollerListener="#{backingBean.scrollEvent}" is not invoked
public void scrollEvent(DataScrollerEvent event) {
....
pageIndex = (Integer.valueOf(newValue) - 1);
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 8 months