[JBoss JIRA] Created: (RF-10266) rich:panelMenuItem does not render if PanelMenuGroup's render values is changed from True to False to True
by Prabhash Verma (JIRA)
rich:panelMenuItem does not render if PanelMenuGroup's render values is changed from True to False to True
----------------------------------------------------------------------------------------------------------
Key: RF-10266
URL: https://issues.jboss.org/browse/RF-10266
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: tests - unit
Reporter: Prabhash Verma
<rich:panelMenuGroup rendered="#{BackingBean.toggleTrueFalse()}">
<rich:panelMenuItem label="Item 1"/>
<rich:panelMenuItem label="Item 2"/>
<rich:panelMenuItem label="Item 3"/>
</rich:panelMenuGroup>
Page loads, page is PanelMenuGroup is rendered - panelMenuItem would be visible.
Now, Render = false for PanelMenuGroup - Nothing is shown.
Now, Render = true for PanelMenuGroup - PanelMenuGroup is shown but underlying PanelMenuItem are hidden.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years
[JBoss JIRA] Updated: (RF-10145) Update core & component images
by Nick Belaevski (JIRA)
[ https://issues.jboss.org/browse/RF-10145?page=com.atlassian.jira.plugin.s... ]
Nick Belaevski updated RF-10145:
--------------------------------
Summary: Update core & component images (was: Update gradient images)
Description:
1) Replace all @DynamicResource annotations with @DynamicUserResource. Make sure that 'versioned' & 'cacheable' attributes are set correctly.
2) Add mappings for all long file names (e.g. org.richfaces.renderkit.images.FooImage -> org.richfaces.fooImage.png)
3) Use @ResourceParameter & @PostConstructResource where applicable
was:Update gradient images according to changes made in RF-8665.
> Update core & component images
> ------------------------------
>
> Key: RF-10145
> URL: https://issues.jboss.org/browse/RF-10145
> Project: RichFaces
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Affects Versions: 4.0.0.Milestone1
> Reporter: Nick Belaevski
> Assignee: Konstantin Mishin
> Fix For: Future_4.X
>
>
> 1) Replace all @DynamicResource annotations with @DynamicUserResource. Make sure that 'versioned' & 'cacheable' attributes are set correctly.
> 2) Add mappings for all long file names (e.g. org.richfaces.renderkit.images.FooImage -> org.richfaces.fooImage.png)
> 3) Use @ResourceParameter & @PostConstructResource where applicable
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years
[JBoss JIRA] Created: (RF-9997) rich:tree - adaptors - introduce value/property node binding
by Lukas Fryc (JIRA)
rich:tree - adaptors - introduce value/property node binding
------------------------------------------------------------
Key: RF-9997
URL: https://issues.jboss.org/browse/RF-9997
Project: RichFaces
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: component-tree
Affects Versions: 4.0.0.Milestone5
Reporter: Lukas Fryc
rich:treeModelAdaptor is currently able to bind only Iterable or Map instances, but we should also consider binding values, which can take their place in tree structure.
<rich:treeModelRecursiveAdaptor
roots="#{richTreeModelRecursiveAdaptorBean.rootNodes}"
nodes="#{node.recursive}"
>
<rich:treeNode>
#{node.label}
</rich:treeNode>
<!-- unsupported -->
<rich:treeModelAdaptor nodes="#{node.value}">
<rich:treeNode>
#{node.property}
</rich:treeNode>
</rich:treeModelAdaptor>
<!-- end-unsupported -->
<rich:treeModelAdaptor nodes="#{node.list}">
<rich:treeNode>
#{node.label}
</rich:treeNode>
</rich:treeModelAdaptor>
</rich:treeModelRecursiveAdaptor>
It will be good to see another tag used since conflict with naming like @nodes="value".
Proposal:
<rich:treePropertyNode var="value" value="#{node.value}">
#{value.property}
</rich:treePropertyNode>
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years