Richfaces
文章平均质量分 78
intervalintl
这个作者很懒,什么都没留下…
展开
-
使用cookie保存皮肤
下面是使用cookie保存皮肤的代码:backbean:@Scope(SESSION)@Name("skinBean")public class SkinBean { private String skin = "blueSky"; public String getSkin() { HttpServletRequest httpServletRequest = (Http...2009-03-04 11:37:24 · 188 阅读 · 0 评论 -
Richfaces 自定义皮肤的两种方法
Method one: change the whole application’s skin RichFaces comes with several skins: To use a skin, all you need to do is set the name in web.xml file: <conte...2009-01-20 17:37:54 · 189 阅读 · 0 评论 -
Richfaces tree 通过读取property文件构建树
view: <h:panelGrid columns="1" width="100%"> <rich:tree style="width:100px" nodeSelectListener="#{simpleTreeBean.processSelection}" reRender="selectedNode" ajaxSubmitSelection=2009-01-09 17:50:47 · 130 阅读 · 0 评论 -
Richfaces 中<rich:modalPanel />的开启与关闭方式
Richfaces 中<rich:modalPanel />有3中开启与关闭的方式分别如下1.使用<rich:componentControl />标签Xml代码<h:graphicImage value="/open.png" id="showlink"/> <rich:componentControl for="modalP...原创 2009-01-09 14:41:17 · 189 阅读 · 0 评论 -
a4j:jsFunction的使用
Ajax4jsf所提供的灵活度是非常高。例如a4j:support等。通过实战,这里想重点介绍一下a4j:jsFuction和a4j:actionparam两个标签.a4j:jsFuction的有趣在于,它提供了一个客户端request前,和request后的js功能的截取添加。为了理解这个概念。首先,把a4j:jsFuction看作一个js fuction.名字由name属性来定义。如果我们给...原创 2009-01-08 16:17:54 · 993 阅读 · 0 评论 -
A4j 动态include页面 格式注意
<a4j:include ajaxRendered="true" viewId="/templates/include/#{panelMenu.location}"/> 1.让a4j工作在Ajax监听模式,只要页面Ajax提交,就会更改页面 2.包含进来的页面,最好以标准的facelet格式写 <html xmlns="http://www.w3.org/1...2009-01-08 15:42:18 · 126 阅读 · 0 评论 -
richfaces fileupload
web.xml <filter> <display-name>RichFaces Filter</display-name> <filter-n2009-04-10 17:30:31 · 110 阅读 · 0 评论 -
Richfaces 控件使用
RichFace标签学习笔记 rich:componentControl 标签和rich:ModolPanel标签 示例: <rich:modalPanel id="panel" width="350" height="100"> <f:facet name=&quo原创 2009-04-10 17:20:16 · 271 阅读 · 0 评论 -
Rich:message 用tooltip显示
因为用到了extjs查找dom节点的方法,所以包含一下连个脚步文件: <script src="#{seamRequest}/resources/ext/ext/ext-base.js" type="text/javascript"></script> <script src="#{seamRequest}/resources/ext/ext/ext-al...2009-03-10 14:19:42 · 729 阅读 · 0 评论 -
richfaces 数据驱动menu(判断菜单切换间隔)
<rich:tabPanel switchType="client" id="w55"> <c:set var="menus" value="#{MenuBean.menus}" /> <c:forEach var="menu" items="#{MenuBean.menuHeader}" varSt2009-03-10 11:22:51 · 256 阅读 · 0 评论 -
Jsf使用Extjs中的loadMask实现页面等待效果
Introduce a technology to use Ext waiting dialog for better user-friendly. Please see the following picture. When click a button, a mask will be shown until...2009-03-05 17:54:54 · 364 阅读 · 0 评论 -
动态改变RichFaces自带的几种皮肤
给RichFaces设置一个皮肤很简单,只要在web.xml文件中写以下这一段就可以了: Xml代码 <context-param> <param-name>org.richfaces.SKIN</param-name> <param-value>ruby</param-value> </conte...原创 2009-02-24 18:31:06 · 160 阅读 · 0 评论