摘要:
In JSF 2.0, both `` and `` tags are used to render HTML input element of type button, with different mechanism to handle the navigation.##1. JSF `h:co... 阅读全文
摘要:
In JSF 2.0, you can use `` tag to render a HTML “script” element, and link it to a js file.For example,``````It will generate following HTML output…``... 阅读全文
摘要:
In JSF 2.0, you can use `` output a css file.For example,``````It will generate following HTML output…``````##JSF outputStylesheet exampleAn example t... 阅读全文
摘要:
In JSF, you can use `` tag to render a HTML “`img`” element. For example, an image named “`sofa.png`” in a resources folder, see figure below :![jsf2-... 阅读全文
摘要:
In JSF 2.0 web application, “`h:outputText`” tag is the most common used tag to display plain text, and it doesn’t generate any extra HTML elements. S... 阅读全文
摘要:
In JSF, `` tag is used to render a multiple select dropdown box – HTML select element with “`multiple`” and “`size=1`” attribute.```//JSF... ... 阅读全文
摘要:
In JSF, `` tag is used to render a dropdown box – HTML select element with “`size=1`” attribute.```//JSF... ``````//HTML output... ```##`h:... 阅读全文
摘要:
In JSF, `` tag is used to render a multiple `select` listbox – HTML `select` element with “`multiple`” and “`size`” attribute.```//JSF... `... 阅读全文
摘要:
In JSF, `` tag is used to render a single select listbox – HTML select element with “size” attribute.```//JSF... ``````//HTML output... `... 阅读全文
摘要:
In JSF, “`h:selectOneRadio`” tag is used to render a set of HTML input element of type “`radio`“, and format it with HTML table and label tag.```//JSF... 阅读全文