- 浏览: 222982 次
- 性别:
- 来自: 深圳
文章分类
- 全部博客 (244)
- java (23)
- java多线程 (7)
- 综合 (1)
- oracle10g (24)
- div+css (1)
- Flex (27)
- java Nio (1)
- java设计模式 (8)
- struts2 (10)
- spring3.0 (5)
- SSH (9)
- dwr (5)
- hibernate3.6 (17)
- dom4j (1)
- sql优化 (5)
- Quartz任务调度框架 (1)
- AOP (3)
- JavaScript (18)
- jquery (3)
- JSF (9)
- ruby (1)
- 正则表达式 (1)
- 明日准备 (2)
- eclipse (3)
- gvim (1)
- CMS (1)
- linux (6)
- 杂 (4)
- java 设计模式 (1)
- MySql (10)
- JBPM (4)
- JSP技术 (1)
- Mybatis And Ibatis (2)
- 经验之谈 (10)
- WebService (1)
- java分布式(高性能,高可用,可伸缩) (0)
- springMvc (2)
- redis (0)
- ant (1)
- Nutz (6)
- 配置管理 (0)
- css+div (1)
- eChars (1)
- angularJs (1)
- D3 (3)
- Scala (1)
最新评论
-
Cobain_LI:
Cobain_LI 写道学习了,之前一直都没注意到有这样的问题 ...
js面向对象3--更简单的原型模式已经带来的问题以及解决办法 -
Cobain_LI:
Cobain_LI 写道学习了,之前一直都没注意到有这样的问题 ...
js面向对象3--更简单的原型模式已经带来的问题以及解决办法 -
Cobain_LI:
有个小失误,144和147行多了两个花括号
js面向对象2--js中工厂模式的演化(重要,详细) -
Cobain_LI:
学习了,之前一直都没注意到有这样的问题
js面向对象3--更简单的原型模式已经带来的问题以及解决办法 -
YTT1121:
有网络拓扑发现的源代码么,或者您会编写么?可以有偿求购,搞科研 ...
flex 之twaver1--简单网络拓扑实现
Jsf标签详解(一个不漏)
整理来自:www.web-tag.net
actionListener
f:actionListener标签为h:commandLink,h:commandButton等指定自定义的事件侦听类。
f:actionListener使用:
JSP:
<h:commandButton id="regist" value="Regist">
<f:actionListener type="mypackage.ActionListenerImpl"></f:actionListener>
</h:commandButton>
更多 actionListener 信息
attribute
f:attribute标签用来设置父标签的属性。
f:attribute标签使用例:
JSP:
<h:graphicImage url="/images/picture.jpg">
<f:attribute name="height" value="20"/>
<f:attribute name="width" value="10"/>
</h:graphicImage>
更多 attribute 信息
convertDateTime
f:convertDateTime标签用来转换日期格式。
示范代码:
<h:outputText value="#{bean.outputDate}">
<f:convertDateTime
pattern="yyyy年MM月dd日"/>
</h:outputText>
更多 convertDateTime 信息
converter
JSF可以使用 f:converter简单地调用指定onverter-id的JSF Converter实现(实现javax.faces.convert.Converter接口的类)对JSF组件组件的输入输出值加以变换。
示范代码:
<h:inputText value="123456">
<f:converter converterId="myConverterId" />
</h:inputText>
更多 converter 信息
convertNumber
f:convertNumber用来对数字,通货等等进行格式转换
示范代码:
<h:inputText value="123456">
<f:convertNumber type="currency" currencySymbol="$"/>
</h:inputText>
facet
f:facet标签用来为包含f:facet标签的父组件与被f:facet标签所包含的子组件之间申明一种特殊的关系。常与h:panelGrid,h:dataTable等标签连用,申明组件为标题或页脚。
示范代码:
<f:facet name="header">
<h:outputText value="Title"/>
</f:facet>
loadBundle
f:loadBundle是JSF提供的一个支持JSP本地化(多语言支持)操作的标签。
示范代码:
<f:loadBundle basename="com.test.resource.Messages" var="msg" />
param
f:param 用于向组件添加参数。一般用法主要有2种:
<h:outputLink value="/someUrl">
<f:param name="id" value="#{bean.id}"/>
<f:param name="name" value="#{bean.name}"/>
</h:outputLink>
或<h:outputFormat value="You have {0} items in your shopping cart.">
<f:param value="#{SessionBean1.cart.itemCount}"/>
</h:outputFormat>
selectItem
f:selectItem 指定 UISelectOne 或 UISelectMany 组件的一个项目,用来为h:selectOneMenu等选择性组件设置选择数据项。
示范代码:
<h:selectOneMenu
value="#{bean.selectedItemValue}">
<f:selectItem itemLabel="Label1" value="0" />
<f:selectItem itemLabel="Label2" value="1" />
</h:selectOneMenu>
selectItems
f:selectItems用于指定 UISelectOne 或 UISelectMany 组件的多个项目,
与f:selectItem标签一样,用来为
- h:selectManyCheckbox
- h:selectManyListbox
- h:selectManyMenu
- h:selectOneListbox
- h:selectOneMenu
- h:selectOneRadio
等设置数据项。
subview
可以使用f:subview包含指定的JSF页面,或者其他JSF组件。
使用f:subview包含JSF页面时,被包含的页面里只能包含有JSF组件,所有非JSF组件元素必须用f:verbatim标签进行转换。
示范代码:
<f:subview id="id3">
<%@ include file="subpage.jsp" %>
</f:subview>
validateDoubleRange
f:validateDoubleRange可以对所有输入类型的组件的输入值加以验证。
f:validateDoubleRange必须被包含在上述输入组件之内。例:
<h:inputText id="amount" value="#{mybean.amount}" required="true">
<f:validateDoubleRange maximum="2500.8" minimum="0.00"></f:validator>
</h:inputText>
validateLength
示范代码:
<h:inputText id="userId" value="#{mybean.userId}" required="true">
<f:validateLength maximum="16" minimum="8" />
</h:inputText>
validateLongRange
f:validateLongRange可以对所有输入类型的组件的输入值加以验证。
f:validateLongRange必须被包含在上述输入组件之内。例:
<h:inputText id="amount" value="#{mybean.amount}" required="true">
<f:validateLongRange maximum="2500" minimum="800" />
</h:inputText>
valueChangeListener
valueChangeListener 向父组件注册值变更监听器。
示范代码:
<h:selectBooleanCheckbox id="sbc_operate" value="#{pc_Attribute.selected}"
valueChangeListener="#{pc_Attribute.onOperateSelectedChange}"
onclick="submit();">
verbatim
简单说来就是,标签里包含什么,就在网页上输出什么。
示范代码:
<f:verbatim><li /></f:verbatim>
view
view用于 创建顶层视图。
使用样例:
<html>
<body>
<f:view>
<h:column>
<h:outputText value="#{user.name}"/>
</h:column>
</f:view>
</body>
</html>
更多 view 信息
• JSF Form
column
<h:dataTable>配合<h:column>来以表格的方式显示数据,< h:column>中只能包括 JSF组件或者是<f:facet>,JSF支援两种facet:header与footer。
示范代码:
<h:dataTable value="#{tableBean.userList}" var="user">
<h:column>
<f:facet name="header">
<h:outputText value="Name"/>
</f:facet>
</h:column>
</h:dataTable>
更多 column 信息
commandButton
commandButton
显示一个命令按钮,即输出<input> HTML标签,其type属性可以设定为button、submit或reset,预设是submit,按下按钮会触发 javax.faces.event. ActionEvent,使用例子如下:
<h:commandButton value="提交" action="#{user.verify}"/>
更多 commandButton 信息
commandLink
commandLink
产生超链接,会输出<a> HTML标签,而href属性会有'#'。
示范代码:
<h:commandLink value="#{msgs.commandText}"
action="#{user.verify}"/>
更多 commandLink 信息
dataTable
很多数据经常使用表格来表现,JSF提供<h:dataTable>标签让您得以列举数据并使用表格方式来呈现。
示范代码:
<h:dataTable value="#{tableBean.userList}" var="user">
<h:column>
<h:outputText value="#{user.name}"/>
</h:column>
<h:column>
<h:outputText value="#{user.password}"/>
</h:column>
</h:dataTable>
更多 dataTable 信息
form
<h:form>和HTML里面的form,用于表单数据提交。
更多 form 信息
graphicImage
<h:graphicImage>
这个标签会绘制一个HTML <img>标签,value可以指定路径或图片URL,路径可以指定相对路径或绝对路径,例如:
<h:graphicImage value="/images/logowiki.jpg"/>
更多 graphicImage 信息
inputHidden
inputHidden
隐藏输入框,即输出<input> HTML标签,其type属性设定为hidden,隐藏输入框的值用于保留一些信息于客户端,以在下一次发送表单时一并提交,例如:
<h:inputHidden value="#{user.hiddenInfo}"/>
更多 inputHidden 信息
inputSecret
inputSecret
显示密码输入框,即输出<input> HTML标签,其type属性设定为password,
例如:
<h:inputSecret value="#{user.password}"/>
您可以设定redisplay属性以决定是否要显示密码栏目的值,预设是false。
更多 inputSecret 信息
inputText
inputText显示单行输入框,即输出<input> HTML标签,其type属性设定为text。
例如:
<h:inputText value="#{user.name}"/>
更多 inputText 信息
inputTextarea
inputTextarea
显示多行输入文字区域,即输出<textarea> HTML标签,例如:
<h:inputTextarea value="#{user.command}"/>
更多 inputTextarea 信息
message
显示一个组件的最近使用的消息,
示范代码:
<h:inputText id="inp2" />
<h:message for="inp2" showSummary="false" showDetail="true" />
更多 message 信息
messages
h:messages用于显示所有消息。
使用示范代码:
<h:messages id="messageAll" showDetail="true" showSummary="true"/>
更多 messages 信息
outputFormat
outputFormat
产生指定的文字信息,可以搭配<f:param>来设定信息的参数以格式化文字信息,
例如:
<f:loadBundle basename="messages" var="msgs"/>
<h:outputFormat value="#{msgs.welcomeText}">
<f:param value="Hello"/>
<f:param value="Guest"/>
</h:outputFormat>
更多 outputFormat 信息
outputLabel
outputLabel
产生<label> HTML标签,使用for属性指定组件的client ID,例如:
<h:inputText id="user" value="#{user.name}"/>
<h:outputLabel for="user" value="#{user.name}"/>
这会产生像是以下的标签:
<input id="user" type="text" name="user" value="guest" />
<label for="user">
更多 outputLabel 信息
outputLink
outputLink
产生<a> HTML标签,例如:
<h:outputLink value="../index.jsp">
<h:outputText value="Link to Index"/>
<f:param name="name" value="MyName"/>
</h:outputLink>
你可搭配<f:param>帮链结加上参数,所有的参数都会变成 name=value 的类型附加在链接后。
value所指定的内容也可以是JSF EL绑定。
更多 outputLink 信息
outputText
outputText
简单的显示指定的值或绑定的信息,例如:
<h:outputText value="#{user.name}"/>
更多 outputText 信息
panelGrid
<h:panelGrid>
这个标签可以用来作简单的组件排版,它会使用HTML表格标签来绘制表格,并将组件置于其中,主要指定columns属性。
例如:
<h:panelGrid columns="2">
<h:outputText value="Username"/>
<h:inputText id="name" value="#{userBean.name}"/>
。。。。</h:panelGrid>
panelGroup
<h:panelGroup>
这个组件用来将数个JSF组件包装起来,使其看来像是一个组件,例如:
<h:panelGroup>
<h:commandButton value="submit" action="login"/>
<h:commandButton value="reset" type="reset"/>
</h:panelGroup>
更多 panelGroup 信息
selectBooleanCheckbox
<h:selectBooleanCheckbox>在视图上呈现一个复选框。
例如:
我同意 <h:selectBooleanCheckbox value="#\{user.aggree\}"/>
value所绑定的属性必须接受与传回boolean类型
更多 selectBooleanCheckbox 信息
selectManyCheckbox
这个标签提供使用者复选项目的功能
例子如下:
<h:selectManyCheckbox layout="pageDirection"
value="#{user.preferColors}">
<f:selectItem itemLabel="红" itemValue="false"/>
<f:selectItem itemLabel="黄" itemValue="false"/>
<f:selectItem itemLabel="蓝" itemValue="false"/>
</h:selectManyCheckbox>
更多 selectManyCheckbox 信息
selectManyListbox
这个标签提供使用者复选项目的功能
例子如下:
<h:selectManyListbox layout="pageDirection"
value="#{user.preferColors}">
<f:selectItem itemLabel="红" itemValue="false"/>
<f:selectItem itemLabel="黄" itemValue="false"/>
<f:selectItem itemLabel="蓝" itemValue="false"/>
</h:selectManyListbox>
更多 selectManyListbox 信息
selectManyMenu
这个标签提供使用者复选项目的功能。
例子如下:
<h:selectManyMenu layout="pageDirection"
value="#{user.preferColors}">
<f:selectItem itemLabel="红" itemValue="false"/>
<f:selectItem itemLabel="黄" itemValue="false"/>
<f:selectItem itemLabel="蓝" itemValue="false"/>
</h:selectManyMenu>
更多 selectManyMenu 信息
selectOneListbox
selectOneListbox为单选列表框。
使用示范代码:
<h:selectOneListbox layout="pageDirection" value="#{user.education}">
<f:selectItem itemLabel="高中" itemValue="高中"/>
<f:selectItem itemLabel="大學" itemValue="大學"/>
<f:selectItem itemLabel="研究所以上" itemValue="研究所以上"/>
</h:selectOneListbox>
更多 selectOneListbox 信息
selectOneMenu
selectOneMenu 为下拉框,,和HTML的下拉框一样。
使用示范代码:
<h:selectOneMenu layout="pageDirection" value="#{user.education}">
<f:selectItem itemLabel="高中" itemValue="高中"/>
<f:selectItem itemLabel="大學" itemValue="大學"/>
<f:selectItem itemLabel="研究所以上" itemValue="研究所以上"/>
</h:selectOneMenu>
更多 selectOneMenu 信息
selectOneRadio
selectOneRadio为单选按钮集,类似网页的<input type="radio" ....
使用示例如下:
<h:selectOneRadio value="#{user.education}">
<f:selectItem itemLabel="高中" itemValue="高中"/>
<f:selectItem itemLabel="大学" itemValue="大学"/>
<f:selectItem itemLabel="研究所以上" itemValue="研究所以上"/>
</h:selectOneRadio>
更多 selectOneRadio 信息
整理来自:www.web-tag.net
actionListener
f:actionListener标签为h:commandLink,h:commandButton等指定自定义的事件侦听类。
f:actionListener使用:
JSP:
<h:commandButton id="regist" value="Regist">
<f:actionListener type="mypackage.ActionListenerImpl"></f:actionListener>
</h:commandButton>
更多 actionListener 信息
attribute
f:attribute标签用来设置父标签的属性。
f:attribute标签使用例:
JSP:
<h:graphicImage url="/images/picture.jpg">
<f:attribute name="height" value="20"/>
<f:attribute name="width" value="10"/>
</h:graphicImage>
更多 attribute 信息
convertDateTime
f:convertDateTime标签用来转换日期格式。
示范代码:
<h:outputText value="#{bean.outputDate}">
<f:convertDateTime
pattern="yyyy年MM月dd日"/>
</h:outputText>
更多 convertDateTime 信息
converter
JSF可以使用 f:converter简单地调用指定onverter-id的JSF Converter实现(实现javax.faces.convert.Converter接口的类)对JSF组件组件的输入输出值加以变换。
示范代码:
<h:inputText value="123456">
<f:converter converterId="myConverterId" />
</h:inputText>
更多 converter 信息
convertNumber
f:convertNumber用来对数字,通货等等进行格式转换
示范代码:
<h:inputText value="123456">
<f:convertNumber type="currency" currencySymbol="$"/>
</h:inputText>
facet
f:facet标签用来为包含f:facet标签的父组件与被f:facet标签所包含的子组件之间申明一种特殊的关系。常与h:panelGrid,h:dataTable等标签连用,申明组件为标题或页脚。
示范代码:
<f:facet name="header">
<h:outputText value="Title"/>
</f:facet>
loadBundle
f:loadBundle是JSF提供的一个支持JSP本地化(多语言支持)操作的标签。
示范代码:
<f:loadBundle basename="com.test.resource.Messages" var="msg" />
param
f:param 用于向组件添加参数。一般用法主要有2种:
<h:outputLink value="/someUrl">
<f:param name="id" value="#{bean.id}"/>
<f:param name="name" value="#{bean.name}"/>
</h:outputLink>
或<h:outputFormat value="You have {0} items in your shopping cart.">
<f:param value="#{SessionBean1.cart.itemCount}"/>
</h:outputFormat>
selectItem
f:selectItem 指定 UISelectOne 或 UISelectMany 组件的一个项目,用来为h:selectOneMenu等选择性组件设置选择数据项。
示范代码:
<h:selectOneMenu
value="#{bean.selectedItemValue}">
<f:selectItem itemLabel="Label1" value="0" />
<f:selectItem itemLabel="Label2" value="1" />
</h:selectOneMenu>
selectItems
f:selectItems用于指定 UISelectOne 或 UISelectMany 组件的多个项目,
与f:selectItem标签一样,用来为
- h:selectManyCheckbox
- h:selectManyListbox
- h:selectManyMenu
- h:selectOneListbox
- h:selectOneMenu
- h:selectOneRadio
等设置数据项。
subview
可以使用f:subview包含指定的JSF页面,或者其他JSF组件。
使用f:subview包含JSF页面时,被包含的页面里只能包含有JSF组件,所有非JSF组件元素必须用f:verbatim标签进行转换。
示范代码:
<f:subview id="id3">
<%@ include file="subpage.jsp" %>
</f:subview>
validateDoubleRange
f:validateDoubleRange可以对所有输入类型的组件的输入值加以验证。
f:validateDoubleRange必须被包含在上述输入组件之内。例:
<h:inputText id="amount" value="#{mybean.amount}" required="true">
<f:validateDoubleRange maximum="2500.8" minimum="0.00"></f:validator>
</h:inputText>
validateLength
示范代码:
<h:inputText id="userId" value="#{mybean.userId}" required="true">
<f:validateLength maximum="16" minimum="8" />
</h:inputText>
validateLongRange
f:validateLongRange可以对所有输入类型的组件的输入值加以验证。
f:validateLongRange必须被包含在上述输入组件之内。例:
<h:inputText id="amount" value="#{mybean.amount}" required="true">
<f:validateLongRange maximum="2500" minimum="800" />
</h:inputText>
valueChangeListener
valueChangeListener 向父组件注册值变更监听器。
示范代码:
<h:selectBooleanCheckbox id="sbc_operate" value="#{pc_Attribute.selected}"
valueChangeListener="#{pc_Attribute.onOperateSelectedChange}"
onclick="submit();">
verbatim
简单说来就是,标签里包含什么,就在网页上输出什么。
示范代码:
<f:verbatim><li /></f:verbatim>
view
view用于 创建顶层视图。
使用样例:
<html>
<body>
<f:view>
<h:column>
<h:outputText value="#{user.name}"/>
</h:column>
</f:view>
</body>
</html>
更多 view 信息
• JSF Form
column
<h:dataTable>配合<h:column>来以表格的方式显示数据,< h:column>中只能包括 JSF组件或者是<f:facet>,JSF支援两种facet:header与footer。
示范代码:
<h:dataTable value="#{tableBean.userList}" var="user">
<h:column>
<f:facet name="header">
<h:outputText value="Name"/>
</f:facet>
</h:column>
</h:dataTable>
更多 column 信息
commandButton
commandButton
显示一个命令按钮,即输出<input> HTML标签,其type属性可以设定为button、submit或reset,预设是submit,按下按钮会触发 javax.faces.event. ActionEvent,使用例子如下:
<h:commandButton value="提交" action="#{user.verify}"/>
更多 commandButton 信息
commandLink
commandLink
产生超链接,会输出<a> HTML标签,而href属性会有'#'。
示范代码:
<h:commandLink value="#{msgs.commandText}"
action="#{user.verify}"/>
更多 commandLink 信息
dataTable
很多数据经常使用表格来表现,JSF提供<h:dataTable>标签让您得以列举数据并使用表格方式来呈现。
示范代码:
<h:dataTable value="#{tableBean.userList}" var="user">
<h:column>
<h:outputText value="#{user.name}"/>
</h:column>
<h:column>
<h:outputText value="#{user.password}"/>
</h:column>
</h:dataTable>
更多 dataTable 信息
form
<h:form>和HTML里面的form,用于表单数据提交。
更多 form 信息
graphicImage
<h:graphicImage>
这个标签会绘制一个HTML <img>标签,value可以指定路径或图片URL,路径可以指定相对路径或绝对路径,例如:
<h:graphicImage value="/images/logowiki.jpg"/>
更多 graphicImage 信息
inputHidden
inputHidden
隐藏输入框,即输出<input> HTML标签,其type属性设定为hidden,隐藏输入框的值用于保留一些信息于客户端,以在下一次发送表单时一并提交,例如:
<h:inputHidden value="#{user.hiddenInfo}"/>
更多 inputHidden 信息
inputSecret
inputSecret
显示密码输入框,即输出<input> HTML标签,其type属性设定为password,
例如:
<h:inputSecret value="#{user.password}"/>
您可以设定redisplay属性以决定是否要显示密码栏目的值,预设是false。
更多 inputSecret 信息
inputText
inputText显示单行输入框,即输出<input> HTML标签,其type属性设定为text。
例如:
<h:inputText value="#{user.name}"/>
更多 inputText 信息
inputTextarea
inputTextarea
显示多行输入文字区域,即输出<textarea> HTML标签,例如:
<h:inputTextarea value="#{user.command}"/>
更多 inputTextarea 信息
message
显示一个组件的最近使用的消息,
示范代码:
<h:inputText id="inp2" />
<h:message for="inp2" showSummary="false" showDetail="true" />
更多 message 信息
messages
h:messages用于显示所有消息。
使用示范代码:
<h:messages id="messageAll" showDetail="true" showSummary="true"/>
更多 messages 信息
outputFormat
outputFormat
产生指定的文字信息,可以搭配<f:param>来设定信息的参数以格式化文字信息,
例如:
<f:loadBundle basename="messages" var="msgs"/>
<h:outputFormat value="#{msgs.welcomeText}">
<f:param value="Hello"/>
<f:param value="Guest"/>
</h:outputFormat>
更多 outputFormat 信息
outputLabel
outputLabel
产生<label> HTML标签,使用for属性指定组件的client ID,例如:
<h:inputText id="user" value="#{user.name}"/>
<h:outputLabel for="user" value="#{user.name}"/>
这会产生像是以下的标签:
<input id="user" type="text" name="user" value="guest" />
<label for="user">
更多 outputLabel 信息
outputLink
outputLink
产生<a> HTML标签,例如:
<h:outputLink value="../index.jsp">
<h:outputText value="Link to Index"/>
<f:param name="name" value="MyName"/>
</h:outputLink>
你可搭配<f:param>帮链结加上参数,所有的参数都会变成 name=value 的类型附加在链接后。
value所指定的内容也可以是JSF EL绑定。
更多 outputLink 信息
outputText
outputText
简单的显示指定的值或绑定的信息,例如:
<h:outputText value="#{user.name}"/>
更多 outputText 信息
panelGrid
<h:panelGrid>
这个标签可以用来作简单的组件排版,它会使用HTML表格标签来绘制表格,并将组件置于其中,主要指定columns属性。
例如:
<h:panelGrid columns="2">
<h:outputText value="Username"/>
<h:inputText id="name" value="#{userBean.name}"/>
。。。。</h:panelGrid>
panelGroup
<h:panelGroup>
这个组件用来将数个JSF组件包装起来,使其看来像是一个组件,例如:
<h:panelGroup>
<h:commandButton value="submit" action="login"/>
<h:commandButton value="reset" type="reset"/>
</h:panelGroup>
更多 panelGroup 信息
selectBooleanCheckbox
<h:selectBooleanCheckbox>在视图上呈现一个复选框。
例如:
我同意 <h:selectBooleanCheckbox value="#\{user.aggree\}"/>
value所绑定的属性必须接受与传回boolean类型
更多 selectBooleanCheckbox 信息
selectManyCheckbox
这个标签提供使用者复选项目的功能
例子如下:
<h:selectManyCheckbox layout="pageDirection"
value="#{user.preferColors}">
<f:selectItem itemLabel="红" itemValue="false"/>
<f:selectItem itemLabel="黄" itemValue="false"/>
<f:selectItem itemLabel="蓝" itemValue="false"/>
</h:selectManyCheckbox>
更多 selectManyCheckbox 信息
selectManyListbox
这个标签提供使用者复选项目的功能
例子如下:
<h:selectManyListbox layout="pageDirection"
value="#{user.preferColors}">
<f:selectItem itemLabel="红" itemValue="false"/>
<f:selectItem itemLabel="黄" itemValue="false"/>
<f:selectItem itemLabel="蓝" itemValue="false"/>
</h:selectManyListbox>
更多 selectManyListbox 信息
selectManyMenu
这个标签提供使用者复选项目的功能。
例子如下:
<h:selectManyMenu layout="pageDirection"
value="#{user.preferColors}">
<f:selectItem itemLabel="红" itemValue="false"/>
<f:selectItem itemLabel="黄" itemValue="false"/>
<f:selectItem itemLabel="蓝" itemValue="false"/>
</h:selectManyMenu>
更多 selectManyMenu 信息
selectOneListbox
selectOneListbox为单选列表框。
使用示范代码:
<h:selectOneListbox layout="pageDirection" value="#{user.education}">
<f:selectItem itemLabel="高中" itemValue="高中"/>
<f:selectItem itemLabel="大學" itemValue="大學"/>
<f:selectItem itemLabel="研究所以上" itemValue="研究所以上"/>
</h:selectOneListbox>
更多 selectOneListbox 信息
selectOneMenu
selectOneMenu 为下拉框,,和HTML的下拉框一样。
使用示范代码:
<h:selectOneMenu layout="pageDirection" value="#{user.education}">
<f:selectItem itemLabel="高中" itemValue="高中"/>
<f:selectItem itemLabel="大學" itemValue="大學"/>
<f:selectItem itemLabel="研究所以上" itemValue="研究所以上"/>
</h:selectOneMenu>
更多 selectOneMenu 信息
selectOneRadio
selectOneRadio为单选按钮集,类似网页的<input type="radio" ....
使用示例如下:
<h:selectOneRadio value="#{user.education}">
<f:selectItem itemLabel="高中" itemValue="高中"/>
<f:selectItem itemLabel="大学" itemValue="大学"/>
<f:selectItem itemLabel="研究所以上" itemValue="研究所以上"/>
</h:selectOneRadio>
更多 selectOneRadio 信息
发表评论
-
jsf 之 FacesContext使用
2014-04-27 11:44 1216注:本文来自互联网http ... -
jsf之组件的immedate属性,context.renderResponse
2014-03-09 14:24 590在实际开发中有时会遇到这样一种情况: 页面 ... -
jsf事件之动作监听事件
2014-03-09 13:52 618按钮和连接触发动作事件,在接近生命周期结束处的“调用应 ... -
jsf 事件之 值更改事件(实现组建之间的联动)
2014-03-09 13:05 731jsf的六个生命周期:请求--->回复视图--& ... -
jsf facelets模板的使用
2014-03-07 01:48 1071<ui:composition> 指定使用哪个模版 ... -
jsf的六个阶段
2014-03-07 00:55 554阶段 说明 恢复视图 为选定的视图找到或创建组件树。 一旦用户 ... -
jsf之导航
2014-03-05 23:00 492jsf导航分为两种:一种是静态导航,一种是动态导航 一 ... -
jsf之登陆
2014-03-03 22:54 701一环境搭建: 1,创建WebProject 2,添加jsf j ...
相关推荐
### JSF标签简体中文版知识点详析 #### 一、JSF标签概述 - **JSF (JavaServer Faces)** 是一种基于Java EE标准的框架,用于构建企业级的Web应用。它通过一套丰富的标签库简化了Web界面的开发过程。 - **JSF标签** ...
JSF标签、EL、Managed Beans、Facelets等概念共同构成了JSF的强大功能,使得开发者能够构建出高效、可维护的Web应用程序。通过对这些知识点的深入理解和实践,开发者可以更好地驾驭JavaServer Faces框架,提升Web...
### JSF标签库详解 #### 一、JSF概述与标签使用 JavaServer Faces(简称JSF)是一种基于Java EE的标准技术,它主要用于构建企业级Web应用。JSF提供了丰富的功能,包括表单处理、验证、国际化等,并通过一套强大的...
### JSF标签 JSF标签是JSF组件的表现形式,它们在HTML页面中被解析并生成相应的HTML元素。例如: - **`<h:dataTable>`**:这是一个用于显示表格数据的JSF标签,可以绑定到后台的Java集合,动态渲染表格行和列。它...
### JSF标签全解 #### 1. `f:actionListener` 标签 - **功能**:`f:actionListener` 标签主要用于为`h:commandLink`、`h:commandButton`等控件指定自定义的事件监听器。通过这种方式,可以实现更加灵活的事件处理...
**JSF标签帮助文档** JavaServer Faces (JSF) 是一个用于构建Web应用程序的Java EE框架,它提供了组件模型和事件驱动的编程模型。在JSF中,UI组件通过使用XML标签来表示,这些标签极大地简化了用户界面的创建。本...
这个压缩包文件"myfaces-example-simple-1.1.7-SNAPSHOT"包含了一个JSF的实际应用示例,适合初学者和开发者了解JSF标签的使用方法和JSF应用的部署流程。 首先,我们要理解JSF的核心概念:组件、事件和渲染。JSF中的...
在实际开发中,网页设计师需要理解JSF标签的用法,并与程序员协作确定Bean的名称绑定,以便正确地将数据展示在页面上。此外,标签的属性和事件处理机制也是关键,例如,`value`属性用于绑定组件的值,`action`属性...
**JSF标签** 是JSF中的关键元素,它们是UI组件的表示,可以在JSP(JavaServer Pages)或其他支持JSF的视图技术中使用。这些标签定义了在用户界面上显示的内容和行为。例如,`<h:outputText>` 标签用于显示文本,而 `...
本篇文章将深入探讨JSF标签及其使用方法。 首先,JSF由两大部分构成:API和JSP标签库。API提供了丰富的功能,如UI组件的表示、组件状态管理、事件处理、输入验证和国际化支持。而JSP标签库则让开发者可以在JSP页面...
本章主要聚焦于JSF中的一个重要组成部分——JSF标签,它是用来构建动态、交互式用户界面的组件。 JSF标签在HTML或XML文档中使用,类似于JSP标签,但它们提供了更高级的功能和灵活性。这些标签对应于JSF组件,这些...
**JSF PDF 《JSF标签》简体中文版** 是一本专门介绍JSF标签使用的指南,针对中文用户,可以帮助读者深入理解如何在JSF应用中有效地使用标签来构建用户界面。这本书可能会涵盖以下内容: 1. **JSF组件生命周期**:...
在《jsf标签》简体中文版中,我们将会深入探讨JSF中的一个重要组成部分——JSF标签。 JSF标签是JSF框架中用于表示UI组件和行为的声明式元素,它们在HTML或XHTML视图中被使用,类似于JSP标签。JSF标签极大地简化了...
在这个“JSF标签库快速参考”中,我们将深入探讨JSF标签库的主要组成部分,以及如何有效地使用它们。 首先,JSF标签库分为两大部分:核心标签库(Core Tags)和UI组件库(UI Components)。核心标签库提供了一些...
### 学习技术 JSF必备 —— JSF标签详解 #### 1. JSF标签概述 JavaServer Faces (JSF) 是一种用于构建基于组件的用户界面的Java Web框架。它提供了一组丰富的标签库,使得开发人员能够更加高效地创建动态网页应用...
JSF(JavaServer Faces)是Java平台上用于构建Web应用程序的一种技术。它提供了一种组件模型,使得开发人员可以通过声明式...在实际开发中,开发者应根据需求选择合适的JSF标签来构建UI,以实现数据的高效管理和展示。
JSF标签库
JSF 标签库教程 JSF(JavaServer Faces)是一种基于Java EE 的Web 应用程序框架,用于构建基于Web 的用户界面。JSF 提供了一组丰富的标签库,用于简化Web 应用程序的开发。下面是JSF 标签库教程的知识点总结: 一...
常用的 JSF标签库 常用的 JSF标签库