xhtml « RichFaces « JSF Q&A





1. Can objects be (de)serialized in richfaces xhtml?    stackoverflow.com

Can Richfaces (de)serialize objects? Say for instance, I have a row of data being displayed in a richfaces table. Can I serialize the row of data to a string and later ...

2. How to access string[] in xhtml page    stackoverflow.com

I am having a simple string array in my bean as

public String[] colors = new String[]{"red", "blue", "green"};
and trying to display these colors from my xhtml as ...

3. JSF: Ternary operator used to assign a value to an fails    stackoverflow.com

I am using JSF tags within an XHTML file. My intention is to enable or disable a <rich:MenuItem> context-menu item by setting the "disabled" attribute to "true" or ...

4. In RichFaces, While using Email validation I am getting NullPointer Exception?    stackoverflow.com

BeanClass code is:

       public void validEmail(FacesContext context, UIComponent component,
                Object ...

5. How to remove Message Ui:include not found on java build path in eclipse, While developing .xhtml file using richfaces and facelets?    stackoverflow.com


I am getting error message like...

The tag handler class for "ui:include" (null) was not found on the Java Build Path
when i placed or in my .xhtml file. What is the ...

6. How do I get a richfaces modal window to display without an onclick event?    stackoverflow.com

I'm trying to implement a modal window like this to display an error message to the user. I have a page with a form for users to enter their ...

7. JBoss Richfaces: How to provide a different validation message to rich:calendar from within the xhtml implementation?    stackoverflow.com

The default implementation of rich:calendar renders the message "Value must be a date" when used like this and the user enters an invalid date, e.g. "13/13/2011".

<h:column>  
  <f:facet name="header">Opt-out ...

8. why rich popupPanel component of richfaces submits null value to managed beans?    stackoverflow.com

Hi i m using rich:popupPanel component of richfaces 4.0 & jsf 2.0 which contains some form fields like name.address & contact also one a4j:commandButton "Save". the text fields are ...

9. JSF 2.0 view file name extension other than xhtml    stackoverflow.com

How can I use view files with a different extension, other than XHTML, still map to the Faces Servlet in a JSF 2.0 application ? I am migrating a JSF 1.2 app ...





10. How can i call a richfaces component from xhtml page    stackoverflow.com

I am including jasper report's exported xhtml to a jsf page. I want to put some export option to jasper report template and when user viewing report on ...

11. Richfaces style classes redefinition    stackoverflow.com

I spend all day and can't change rich:panel style class. This is the page:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
  ...

12. Modify the Background of the Button in Richfaces    stackoverflow.com

I'm trying to change the backgraund-image of an element h:commandButton. It's inside a RichFaces:panel. I made a css file with the following rule:

.sButton
{
     background-image:url('../imgs/btnTexture2.jpg');
     ...

13. Rich faces not working in xhtml pages    coderanch.com