পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Wednesday, March 1, 2017

JSF - Basic Tags

Basic JSF Tags

JSF provides a standard HTML tag library. 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 important Basic Tags in JSF 2.0:
S.N. Tag & Description
1 h:inputText
Renders a HTML input of type="text", text box.
2 h:inputSecret
Renders a HTML input of type="password", text box.
3 h:inputTextarea
Renders a HTML textarea field.
4 h:inputHidden
Renders a HTML input of type="hidden".
5 h:selectBooleanCheckbox
Renders a single HTML check box.
6 h:selectManyCheckbox
Renders a group of HTML check boxes.
7 h:selectOneRadio
Renders a single HTML radio button.
8 h:selectOneListbox
Renders a HTML single list box.
9 h:selectManyListbox
Renders a HTML multiple list box.
10 h:selectOneMenu
Renders a HTML combo box.
11 h:outputText
Renders a HTML text.
12 h:outputFormat
Renders a HTML text. It accepts parameters.
13 h:graphicImage
Renders an image.
14 h:outputStylesheet
Includes a CSS style sheet in HTML output.
15 h:outputScript
Includes a script in HTML output.
16 h:commandButton
Renders a HTML input of type="submit" button.
17 h:Link
Renders a HTML anchor.
18 h:commandLink
Renders a HTML anchor.
19 h:outputLink
Renders a HTML anchor.
20 h:panelGrid
Renders an HTML Table in form of grid.
21 h:message
Renders message for a JSF UI Component.
22 h:messages
Renders all message for JSF UI Components.
23 f:param
Pass parameters to JSF UI Component.
24 f:attribute
Pass attribute to a JSF UI Component.
25 f:setPropertyActionListener
Sets value of a managed bean's property

No comments:

Post a Comment