- JSF - Internationalization
- JSF - Expression Language
- JSF - Spring Integration
- JSF - JDBC Integration
- JSF - Event Handling
- JSF - Ajax
- JSF - Composite Components
- JSF - DataTable
- JSF - Validator Tags
- JSF - Convertor Tags
- JSF - Facelet Tags
- JSF - Basic Tags
- JSF - Page Navigation
- JSF - Managed Beans
- JSF - First Application
- JSF - Life Cycle
- JSF - Architecture
- JSF - Environment Setup
- JSF - Overview
- JSF - Home
JSF Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
JSF - Basic Tags
In this chapter, you will learn about various types of basic JSF tags.
JSF provides a standard HTML tag pbrary. These tags get rendered into corresponding html output.
For these tags you need to use the following namespaces of URI in html node.
<html xmlns = "http://www.w3.org/1999/xhtml" xmlns:h = "http://java.sun.com/jsf/html">
Following are the important Basic Tags in JSF 2.0.
S.No | Tag & Description |
---|---|
1 | Renders a HTML input of type="text", text box. |
2 | Renders a HTML input of type="password", text box. |
3 | Renders a HTML textarea field. |
4 | Renders a HTML input of type="hidden". |
5 | Renders a single HTML check box. |
6 | Renders a group of HTML check boxes. |
7 | Renders a single HTML radio button. |
8 | Renders a HTML single pst box. |
9 | Renders a HTML multiple pst box. |
10 | Renders a HTML combo box. |
11 | Renders a HTML text. |
12 | Renders a HTML text. It accepts parameters. |
13 | Renders an image. |
14 | Includes a CSS style sheet in HTML output. |
15 | Includes a script in HTML output. |
16 | Renders a HTML input of type="submit" button. |
17 | Renders a HTML anchor. |
18 | Renders a HTML anchor. |
19 | Renders a HTML anchor. |
20 | Renders an HTML Table in form of grid. |
21 | Renders message for a JSF UI Component. |
22 | Renders all message for JSF UI Components. |
23 | Pass parameters to JSF UI Component. |
24 | Pass attribute to a JSF UI Component. |
25 | Sets value of a managed bean s property. |