项目上面使用如下:
<p:dataTable ......>
......
<p:column headerText="xxxx">
<p:selectBooleanCheckbox .....>
<f:ajax event="click"
execute="xxxxxxx"
render="xxxxxxxx"
listener="#{page.setShow()}"
immediate="true"/>
</p:selectBooleanCheckbox>
</p:column>
........
</p:dataTable>
就是一个checkbox 点击触发事件, 但是发现F:AJAX并没有被触发。
GOOGLE下,看到stackoverflow上面有类似的问题,需要用p:column封装(wrap).
然后修改如下,即可生效
<p:column>
<f:facet name="header">
<h:outputText value="#{msg.SYSTEMSTATISTIC_SHOW}"/>
</f:facet>
<h:selectBooleanCheckbox id="show1" value="#{counter.show}">
<f:ajax event="click"
execute="show1"
...........
/>
</h:selectBooleanCheckbox>
</p:column>
分享到:
相关推荐
b.<decorator:title/>这个标签会找到被装饰页面的title(<title></title>标签内)内容填入, <decorator:head/>找到被装饰页面的head(<head></head>标签内)内容填入,<decorator:body/>找到被装饰页面的body(<body></...
18年7月更新,清华镜像,完美解决 Yocto,Android fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle 错误,绕开GFW
You can also create your own policy files that define arbitrary permission sets.<br/><br/>Comparison of the sample security policy file <br/><br/> <br/>Permissions/Resource Setting Admin Default ...
在Ubuntu VPS上安装Docker时,可能会遇到一个常见的错误:“Cannot connect to the Docker daemon at unix:///var/run/docker.sock.” 这个问题通常是由于Docker守护进程未运行或者是由于Linux内核版本过低导致的。...
<br>配置myclipse下的Jboss服务器<br><br> EJBStatelss<br><br>Jboss测试<br><br> http://localhost:8080/<br><br>准备工程<br> <br>新建bean<br> Session建立完毕,我们只建了remote的访问方式<br> 写入代码:<br> ...
Arnaud Le Hors <lehors@w3.org> Ian Jacobs <ij@w3.org> Further information about HTML 4.01 is available at: http://www.w3.org/TR/1999/REC-html401-19991224 The ...
maven打包,指定入口类的jar包,具体的pom配置为:<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.1.0</version> <executions> <execution> ...
<taglib-location>/WEB-INF/tld/c.tld</taglib-uri> </taglib> <taglib> <taglib-uri>http://java.sun.com/jsp/jstl/fmt</taglib-uri> <taglib-location>/WEB-INF/tld/fmt.tld</taglib-uri> </taglib> <!-- ....
<artifactId>kingbase8</artifactId> <version>8.2.0</version> </dependency> <dependency> <groupId>com.kingbase</groupId> <artifactId>kingbase8</artifactId> <version>8.6.0</version> </dependency...
解决fatal:remote error:You can’t push to git://github.com/username/*.git问题的办法 今天Git push的时候 fatal:remote error: You can't push to git://github....看来我是没有权限push啊。 解决方法: ...接
<!-- https://mvnrepository.com/artifact/com.github.jgraph/jgraphx --> <dependency> <groupId>com.github.jgraph</groupId> <artifactId>jgraphx</artifactId> <version>v3.9.3</version> </dependency>
使用前请您先阅读以下条款:<br/> please read the following items before using:<br/><br/> 1) 本站仅对原软件包“依样”打包,未做过任何改动,但不保证所提供软件或程序的完整性和安全性。<br/> 1) Our website ...
<TD ID=TD1 Align=Right><A Href="/certsrv"><Font Color=#FFFFFF><LocID ID=locHomeLink><Font Face="Arial" Size=-1><B>Home</B></Font></LocID></Font></A></TD> </TR> </Table> <P ID=locPageTitle1><Font ...
将该压缩包直接解压就能看到和maven上完全一样类型的jar包结构,只需要将压缩包中的9个文件放到下面的路径:“你电脑上maven本地仓库... <artifactId>modbus4j</artifactId> <version>3.0.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context=...
<artifactId>aspose-cad</artifactId> <version>${aspose-cad.version}</version> <scope>system</scope> <systemPath>${project.basedir}/lib/aspose-cad-23.7.jar</systemPath> </dependency>
<Signature>sNLLKGMUdF0r8O1kKilWAGdgfs2BvJb/2Xp8p5iuDVfZXmhppo+d0Ran1P9TKdjV4ABwAgKXxJ3jcQTqE/2IRfqwnPf8itN8aFZlV3TJPYeD3yWE7IT55Gz6EijUpC7aKeoohTb4w2fpox58wWoF3SNp6sK6jDfiAUGEHYJ9pjU=</Signature> ...
- 确保在页面头部 `<head>` 中使用 `<base>` 标签来指定资源的基础路径,例如: ```html <% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName...
更新内容: 在原来的版本中, 如果一个路径没有在struts-config.xml文件中配置, 返回的是一个404错误页面, 现在, 如果一个请求路径没有在<action-mapping />标签中配置, 我们可以自定义返回的错误页面. 使用示例: ...
Sitemesh允许开发者通过`<head>`、`<title>`、`<body>`等标签指定内容如何与装饰器结合。例如,可以使用`<sitemesh:head>`、`<sitemesh:body>`等标签来标记要被装饰器替换的部分。 ### 自定义装饰器 除了默认装饰...