jsf
iamiwangbo
这个作者很懒,什么都没留下…
展开
-
jsf中的ajaxSingle
当ajaxSingle为true时,只是提交当前组件,而对于其他组件是不提交的,它的附带效果就是只对当前组件进行验证,而对其他的组件不会作任何验证。这一点上对于button和link来说感觉和immediate="true"的效果很相似,即跳过所有验证,当然只是效果除此以外它们完全是不同的。 出自:http://ganqing.iteye.com/blog/181302转载 2016-06-28 16:34:54 · 598 阅读 · 0 评论 -
JSF 转换与验证
本月,Rizon Software 的 CTO Paul Tabor 应邀与我一道解除针对 JSF 的 FUD。在本文中,我们将介绍 JSF 转换和验证框架的概念,它比您所想的要容易使用得多,也灵活得多。首先我们将介绍应用于 JSF 生命周期的转换和验证过程,然后展示一个简单的 JSF 应用程序中 的默认转换和验证过程。接着将展示如何创建和插入自定义的实现,以应对要求更高的场景。正如 Ri转载 2017-01-10 17:03:24 · 1487 阅读 · 0 评论 -
JSF Converter介绍与使用
JSF提供Converter机制对用户输入,以及画面输出值进行变换。JSF提供了一些默认的Converter实现,同时也提供了接口可以让用户实现自定义Converter。本文对JSF的Converter的原理机制,功能,实现方法等做一个介绍1,输入变换:在用户1,输入变换:在用户提交时对用户输入值进行变换 2,输出变换:在画面显示前对显示值进行变换在JSF的几个转载 2017-01-09 14:27:17 · 1920 阅读 · 1 评论 -
rich:datatable和 rich:subtable区别
dataTable和subTable原创 2017-01-04 12:55:26 · 1371 阅读 · 0 评论 -
<rich:tabPanel> 中switchType用法
Switching mode could be chosen with the tabPanel attribute"switchType" with three possible parameters.server (DEFAULT)The common submission is performed around tabPanel and a page is compl原创 2016-09-26 14:21:56 · 1147 阅读 · 0 评论 -
JSF的commandButton、commandLink、outputLink用法小结<转>
comanndButton和commandLink: h:commandButton 可以提交表单,但不能传递参数 h:commandLink 可以提交表单,又能传递参数,但是以链接的形式展现 commandLink必须要在一个from中。 comanndButton和commandLink要在一个from中才能提交表单内容。 会发送回本页面,并触发JS转载 2016-10-21 17:25:53 · 4122 阅读 · 0 评论 -
h:commandbutton 和 h:commandlink 比较
There is no functional difference apart from the generated markup and the appearance. The generates a HTML element and the generates a HTML element which uses JavaScript to submit the form. Both a原创 2016-10-21 17:15:35 · 2291 阅读 · 0 评论 -
Richfaces 中<rich:modalPanel />开启与关闭方式
Richfaces 中有3中开启与关闭的方式分别如下1.使用rich:componentControl />标签 click"/> click"/> 2.使用含有EL的js调用方式 ------这种方法我没测试成功。页面报错click="#{rich:component('modalPaneld'转载 2016-06-30 16:55:02 · 1049 阅读 · 0 评论 -
RichFaces Developer Guide 3.3.3(6-6)
6.6 数据迭代 以下组件迭代一个集合的整个数据,并在页面上显示它们。 6.6.1 ,从3.0.0版开始可用 6.6.1.1 描述 该组件是指在UIData组件中渲染行。 图6.13. 组件 6.6.1.2 主要功能 n 完美的皮肤表行和子元素。n 可以利转载 2016-07-12 16:30:18 · 497 阅读 · 0 评论 -
JSF的immediate属性
f it isn't entirely clear yet, here's a summary, complete with real world use examples when they may be beneficial:If set in UIInput(s) only, the process validations phase will be taken plac原创 2017-01-10 17:08:30 · 802 阅读 · 0 评论