[JBoss JIRA] Created: (RF-7394) panelMenu: iconGroupPosition attribute applies incorrectly
by Inna Shchibrya (JIRA)
panelMenu: iconGroupPosition attribute applies incorrectly
----------------------------------------------------------
Key: RF-7394
URL: https://jira.jboss.org/jira/browse/RF-7394
Project: RichFaces
Issue Type: Bug
Components: component-menu
Affects Versions: 3.3.2.CR1
Environment: All browsers
Reporter: Inna Shchibrya
Assignee: Nick Belaevski
1. Add rich:panelMenu with rich:panelMenuGroup which contained other panelMenuGroup on the page.
2. Set iconCollapsedGroup="triangle", iconExpandedGroup="triangleUp" and iconGroupPosition="right".
3. Open the page. --> iconCollapsedGroup and iconExpandedGroup are applied to all panelMenuGroups but iconGroupPosition is applied to nested panelMenuGrou only. See attachment.
For example:
<rich:panelMenu id="myPanel" iconCollapsedGroup="triangle"
iconExpandedGroup="triangleUp" iconGroupPosition="right" width="400">
<rich:panelMenuGroup label="Group 1(expanded=true)" expanded="true"
id="pmg">
<rich:panelMenuItem label="Item 1" disabled="true"></rich:panelMenuItem>
<rich:panelMenuItem label="Item 1 (action)"
onmousedown="alert('OnMouseDown');"></rich:panelMenuItem>
<rich:panelMenuItem label="Item 2"></rich:panelMenuItem>
<rich:panelMenuGroup label="Group 1_3">
<rich:panelMenuItem label="Item 1_3_1"></rich:panelMenuItem>
<rich:panelMenuItem label="Item 1_3_1"></rich:panelMenuItem>
</rich:panelMenuGroup>
</rich:panelMenuGroup>
</rich:panelMenu>
If rich:panelMenuGroup doesn't contain other panelMenuGroups iconGroupPosition isn't applied.
Expected result: iconGroupPosition should be applied for all panelMenuGroups.
--
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
16 years, 9 months
[JBoss JIRA] Created: (RF-7393) panelMenuGroup: If expanded="true" and disabled ="true", panelMenuGroup is rendered in collapsed state
by Inna Shchibrya (JIRA)
panelMenuGroup: If expanded="true" and disabled ="true", panelMenuGroup is rendered in collapsed state
------------------------------------------------------------------------------------------------------
Key: RF-7393
URL: https://jira.jboss.org/jira/browse/RF-7393
Project: RichFaces
Issue Type: Bug
Components: component-menu
Affects Versions: 3.3.2.CR1
Environment: All browsers
Reporter: Inna Shchibrya
Assignee: Nick Belaevski
1. Add rich:panelMenu with rich:panelMenuGroup on the page.
2. Set expanded="true" and disabled ="true" for panelMenuGroup inside panelMenu.
3. Open the page. --> panelMenuGroup is desabled and collapsed.
For example:
<rich:panelMenu id="myPanel">
<rich:panelMenuGroup id="pmg" label="Group 1(expanded=true)"
expanded="true" disabled="true">
<rich:panelMenuItem label="Item 1" ></rich:panelMenuItem>
<rich:panelMenuItem label="Item 2 "></rich:panelMenuItem>
<rich:panelMenuItem label="Item 3"></rich:panelMenuItem>
</rich:panelMenuGroup>
</rich:panelMenu>
Expected result: panelMenuGroup should be desabled and expanded.
--
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
16 years, 9 months
[JBoss JIRA] Created: (RF-7392) <rich:panelMenuItem> stops to work inside include tag
by Roman Mandeleil (JIRA)
<rich:panelMenuItem> stops to work inside include tag
-----------------------------------------------------
Key: RF-7392
URL: https://jira.jboss.org/jira/browse/RF-7392
Project: RichFaces
Issue Type: Bug
Components: component-menu
Affects Versions: 3.3.1
Environment: window and linux
Reporter: Roman Mandeleil
The <rich:panelMenuItem> tag work only once if it is placed inside include tag. I see that ajax being sent from the client but never reach the bean.
To recreate just take the source code from panel menu sample (richfaces-ui-3.3.1.GA-src\samples\richfaces-demo\src\main\webapp\richfaces\panelMenu)
and place it inside <ui:include>, like this:
<f:facet name="sidebar">
<rich:panel header="Menu" style="height:400px;overflow:hidden;left:10px;">
<ui:include src="/left-frame.xhtml" />
</rich:panel>
</f:facet>
You will see that the menu will work fine for first click and dies afterward.
--
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
16 years, 9 months
[JBoss JIRA] Created: (RF-7436) panelMenuGroup: process attribute does not work
by Inna Shchibrya (JIRA)
panelMenuGroup: process attribute does not work
-----------------------------------------------
Key: RF-7436
URL: https://jira.jboss.org/jira/browse/RF-7436
Project: RichFaces
Issue Type: Bug
Components: component-menu
Affects Versions: 3.3.2.CR1
Environment: All browsers
Reporter: Inna Shchibrya
Assignee: Nick Belaevski
Priority: Minor
If ajaxSingle="true", process does not work. For example:
<rich:panelMenu>
<rich:panelMenuGroup id="panelMenuGroupID" label="Group 1_1_1"
expandMode="ajax" ajaxSingle="true" id="calendarId"
process="inputId">
<rich:panelMenuItem id="item1" label="Item 1"
iconStyle="background-color:red;"></rich:panelMenuItem>
<rich:panelMenuItem id="item2" label="Item 2"></rich:panelMenuItem>
<rich:panelMenuItem id="item3" label="Item 3"></rich:panelMenuItem>
<rich:panelMenuItem id="item4" label="Item 4">
<h:inputText value="#{panelMenu.inputText}"></h:inputText>
</rich:panelMenuItem>
</rich:panelMenuGroup>
</rich:panelMenu>
<br />
<h:inputText value="#{custom.input1}" id="inputId" />
<br />
<h:inputText value="#{custom.input2}" id="inputId2" />
1. Expand or collapse panelMenuGroup.
2. Verify logs in the console. --> input1 is not present in logs in the console.
Expected result: If input id is a value of process attribute, this input should be present in logs in the console.
--
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
16 years, 9 months