I have a JSF application where the UI components render very slowly in IE7 but give a much better performance.Dont know what can be done ,but just throwing this question out ... |
For many internal problems that doesn't count now, We have a Servlet filter that changes all outcome that's application/xhtml+xml and rewrite to text/html;charset=UTF-8 so even using the facelets it'll work with ... |
How do I render JSF components based on a logged in user's role? I know the external context exposes the principals, but how should I do the rendering properly in JSF? ... |
I have a custom jsf component which represents a form. This is composed by a few text boxes that need to be filled by users. If a user submit a form ... |
Is there a JSF component which can take a collection of items and render it the way I want? Like a h:dataTable, but then without the markup of a HTML <table>.
... |
i get a date from server side and how do I compare this in my xhtml code, so that if it is less than today's date, I'll render the panel, otherwise ... |
i have a cosmetic problem. I'm using
private boolean production = true;
(+ getters and setters)
for inner logic of application. And in the JSF I'm calling it for rendering or disabling components, ... |
|
I have problem referencing and displaying composite component's childs like that:
<xyz:mycomponent>
<h:outputText value="some text"/>
<h:outputText value="another text"/>
</xyz:mycomponent>
Where mycomponent is defined like that:
<composite:implementation>
<!-- some tags here -->
...
|
I have a simple composite component with an optional ajax listener implemented with the richfaces a4j:ajax component.
Here is the interface definition :
<!-- INTERFACE -->
<composite:interface name="inplaceInput">
<composite:attribute ...
|
I've got a problem, concerning the "rendered" attribute of a h:outputStylesheet inside my composite component.
<h:outputStylesheet rendered="#{cc.attrs.value == 'somevalue'}" library="css" name="mainDark.css" target="head" />
does not work, even if the EL evaluates to 'true'. ... |
I have a web application in which I have certain components that should not be rendered if the browser is Internet Explorer.
I can technically use jquery but I'm assuming that's ... |
I have a (IBM)jsf 1.2 application where i try to show errors at the top of the page using a faces managed bean,
my problem is if an error is created in ... |
I create a composite component like this:
<cc:interface>
<cc:attribute name="value"
...
|
|
|
|
I have a custom JSF component that renders navigation links. The following is a typical usage of the component: And, the rendered content will appear as ... |
hi all, I have a component say, .To this i am binding values using . In the backing bean i am getting values from database into a map and i am binding that map to like as shown below: Now my requirement is that when mapValue is in sessionScope then only should render. How can ... |
|
|