componentcontrol « RichFaces « JSF Q&A

Home
JSF Q&A
1.API
2.Bean
3.Component
4.Control
5.Data
6.database
7.Datatable
8.Development
9.Exception
10.Facelets
11.Form
12.Glassfish
13.HTML
14.IceFaces
15.Internationalization
16.JPA
17.JSP
18.MyFaces
19.openfaces
20.Page
21.Portlet
22.PrimeFaces
23.RichFaces
24.Seam
25.Security
26.Servlet
27.Session
28.Tag
29.Test
30.Tomcat
31.validation
32.Web Service
JSF Q&A » RichFaces » componentcontrol 

1. Richfaces tooltip componentcontrol param    stackoverflow.com

I have a table where each cell click opens a tooltip using the componentControl tag, this works. But I wanted to pas a parameter to the tooltip, which is different per ...

2. Set JSF backing bean variable when clicking componentControl and displaying contentMenu    stackoverflow.com

I have a rich:componentControl which sets a parameter called applicationId and displays a rich:contextMenu:

<rich:componentControl event="onRowClick" for="ctxMenu" operation="show">
<f:param value="#{item[1].applicationId}" name="applicationId"/>
</rich:componentControl>
and here's the rich:contextMenu:
<rich:contextMenu id="ctxMenu" submitMode="ajax">        ...

3. Problem passing boolean value from rich:ComponentControl in order to render rich:menuItems    stackoverflow.com

We have the following rich:ComponentControl:

<rich:componentControl event="onRowClick" for="ctxMenu" operation="show">
<f:param value="#{item.hasDocuments}" name="hasDocuments" />
</rich:componentControl>
The value of #{item.hasDocuments} is being successfully passed from the bean as either true or false. Here's the contextMenu which is supposed ...

4. rich:componentControl and setPropertyActionListener wont work together    stackoverflow.com

<h:commandLink action="#" value="some value">
 <f:setPropertyActionListener target="#{someBean.id}" value="#{var.id}"/>
 <rich:componentControl target="popup" operation="show" />
 </h:commandLink>
Anybody has idea why this composition wont work. To be precise property action listener does not do a job, and popup ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.