Monday 27 May 2013

JSF Convertor tags

JSF provides inbuilt convertors to convert its UI component's data to object used in a managed bean and vice versa.For example, these tags can convert a text into date object and can validate the format of input as well.
For these tags you need to use the following namespaces of URI in html node.

<html 
   xmlns="http://www.w3.org/1999/xhtml" 
   xmlns:ui="http://java.sun.com/jsf/facelets" 
>  
 
Following are important Convertor Tags in JSF 2.0: 
       S.No
                                Tag & Description
         1
f:convertNumber
Converts a String into a Number of desired format
         2
f:convertDateTime
Converts a String into a Date of desired format
         3
Custom Convertor
Creating a custom convertor


 


No comments:

Post a Comment