[JBoss JIRA] Created: (RF-2560) It's not possible to create menu items with the help of <a4j:repeat />
by Bj?rn Weinbrenner (JIRA)
It's not possible to create menu items with the help of <a4j:repeat />
----------------------------------------------------------------------
Key: RF-2560
URL: http://jira.jboss.com/jira/browse/RF-2560
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.4
Environment: windows, jboss, ff/ie, jsf ri
Reporter: Bj?rn Weinbrenner
It seems that its not possible to use <ui:repeat /> or <a4j:repeat /> to create menus. if you iterate to add menuItems to a a menu e.g. contextmenu they won't appear.
That seems to depend on the implementation of org.richfaces.renderkit.html.AbstractMenuRenderer
Only direct children are search for items. Repeat-Components are ignored and their childs aren't found.
public void encodeItems(FacesContext context, UIComponent component) throws IOException {
List kids = component.getChildren();
Iterator it = kids.iterator();
while (it.hasNext()) {
UIComponent kid = (UIComponent)it.next();
if (kid instanceof UIMenuGroup || kid instanceof UIMenuItem || kid instanceof UIMenuSeparator) {
renderChild(context, kid);
}
}
}
--
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
13 years, 10 months
[JBoss JIRA] Created: (RF-6456) SuggestionAction called twice during request if usingSuggestObjects = true
by Gerrit Brehmer (JIRA)
SuggestionAction called twice during request if usingSuggestObjects = true
--------------------------------------------------------------------------
Key: RF-6456
URL: https://jira.jboss.org/jira/browse/RF-6456
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Reporter: Gerrit Brehmer
SuggestionAction is called twice, if usingSuggestObjects is activated. I looked into the sourcecode and found the two calls:
# Action with value from request/input field (method setupValue - setValue(suggestingAction.invoke(context.getELContext(), new Object[]{submittedValue}));)
# Action with "null" as string (method getRequestValuesData - setValue(suggestingAction.invoke(context.getELContext(), new Object[]{requestedValue}));)
(SourceCode from UiSuggestionAction.java Tag 3.3.0)
Is the second call really necessary? Because we call an expensive backend method (200ms - 7000ms for address suggest) this makes a noticable delay for the user
Our workaround is to return an empty list for the second call, which doesn't change the behaviour
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months
[JBoss JIRA] Created: (RF-7431) extendedDataTable: menu icon is displayed in wrong place in firefox, if header or caption facet is defined
by Vadim Mikovoz (JIRA)
extendedDataTable: menu icon is displayed in wrong place in firefox, if header or caption facet is defined
----------------------------------------------------------------------------------------------------------
Key: RF-7431
URL: https://jira.jboss.org/jira/browse/RF-7431
Project: RichFaces
Issue Type: Bug
Components: component-tables
Affects Versions: 3.3.2.CR1
Environment: v.3.3.2-SNAPSHOT
firefox 3.0
Reporter: Vadim Mikovoz
Assignee: Nick Belaevski
<rich:extendedDataTable id="myExtendedDataTableID"
value="#{dataScroller.dataTable}" var="dT">
<f:facet name="caption">
<h:outputText value="My caption" />
</f:facet>
<rich:column label="first column">
<f:facet name="header">
<h:outputText value="first" />
</f:facet>
<h:outputText value="#{dT.str0}" />
</rich:column>
<rich:column label="second column">
<f:facet name="header">
<h:outputText value="second" />
</f:facet>
<h:outputText value="#{dT.int0}" />
</rich:column>
</rich:extendedDataTable>
1. Open test page
2. Move mouse over any column header
-------------------------------------------------------
menu icon is appeared on caption (see attachment)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months
[JBoss JIRA] Created: (RF-7709) realworld/ui: Albums tooltips are present shelves names in My shelves tree
by Inna Shchibrya (JIRA)
realworld/ui: Albums tooltips are present shelves names in My shelves tree
--------------------------------------------------------------------------
Key: RF-7709
URL: https://jira.jboss.org/jira/browse/RF-7709
Project: RichFaces
Issue Type: Bug
Components: examples
Affects Versions: 3.3.2.CR1
Environment: All browsers
Local
Reporter: Inna Shchibrya
Assignee: Andrey Markhel
Priority: Minor
Attachments: tooltip_albums.png
Precondition: Login to the application as a user with shelves and albums.
1. Move the mouse over a shelf name in My shelves tree. --> Tooltip with the shelf name has appeared. It's ok.
2. Open the shelf in My shelves tree. --> Albums of this shelf are present in My shelves tree. It's ok.
3. Move the mouse over an album name. --> Tooltip with the shelf name has appeared. See attachment.
Expected result: Tooltip with the album name should appear.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months
[JBoss JIRA] Created: (RF-7710) realworld/ui: Sometimes the pop-up window with confirmation message is not visible
by Inna Shchibrya (JIRA)
realworld/ui: Sometimes the pop-up window with confirmation message is not visible
----------------------------------------------------------------------------------
Key: RF-7710
URL: https://jira.jboss.org/jira/browse/RF-7710
Project: RichFaces
Issue Type: Bug
Components: examples
Affects Versions: 3.3.2.CR1
Environment: All browsers
Local
Reporter: Inna Shchibrya
Assignee: Andrey Markhel
Priority: Minor
Precondition: Login to the application as a user with shelves, albums and images.
1. Click on the image from My shelves tree.
2. Scroll down the page and click on Delete button. --> The page is disabled but the pop-up window with confirmation message is not visible.
3. Scroll up the page. --> The pop-up window with confirmation message is visible.
Expected result: The pop-up window with confirmation message should be visible on that part of the page where the user is.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months
[JBoss JIRA] Created: (RF-7715) realworld/ui: Long name of the image is cut on the page
by Inna Shchibrya (JIRA)
realworld/ui: Long name of the image is cut on the page
-------------------------------------------------------
Key: RF-7715
URL: https://jira.jboss.org/jira/browse/RF-7715
Project: RichFaces
Issue Type: Bug
Components: examples
Affects Versions: 3.3.2.CR1
Environment: All browsers
Local
Reporter: Inna Shchibrya
Assignee: Andrey Markhel
Priority: Minor
Attachments: long_image_name.png
Precondition: Login as a user with shelves, albums and images.
1. Click on some image from My shelves tree.
2. Click on the image name on the page.
3. Change it on the name with more than 100 symbols and press Enter. --> The name of the image is cut. See attachment.
Expected result: Long name of the image shouldn't be cut or should has a tooltip with the whole name.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months