- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
据我所知 @this 表示触发事件的当前组件,例如:
<p:commandButton process="@this" ... />
<h:inputText ...>
<f:ajax execute="@this" ... />
</h:inputText>
<p:column>
<p:commandLink
value="#{anggaranDetail.map['code']}"
process="@this infoAnggaranForm:Anggaran"
update="detailDialogForm:Anggaran detailDialogForm:SubAnggaran"
oncomplete="infoAnggaranDialog.hide()"
image="ui-icon ui-icon-search"
action="#{tInputBean.updateAnggaranSubAnggaran}">
<f:setPropertyActionListener value="#{anggaranDetail}"
target="#{infoAnggaranBean.selectedAnggaranDetail}" />
</p:commandLink>
</p:column>
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.0.4-b09</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>2.0.4-b09</version>
<scope>compile</scope>
</dependency>
最佳答案
PrimeFaces process
和标准JSF execute
属性应该指向以空格分隔的组件标识符,这些组件标识符应ajax请求在整个JSF生命周期中由JSF处理(获取请求参数,对其进行验证,更新模型,执行操作)。 process
默认为当前表单@form
,而execute
默认为当前组件@this
。在命令链接/按钮中,这是执行与链接/按钮本身关联的 Action 所必需的。
但是,在数据表中有process="@this infoAnggaranForm:Anggaran"
,因此要处理两个组件。如果省略@this
但保留其他组件,那么它将仅处理/执行其他组件,而不处理链接/按钮组件。如果省略process
属性,则默认为@form
。如果您还有更多其他形式相同的输入组件,则也将对其进行处理。
根据具体的功能要求,您可以将其保留为process="@this infoAnggaranForm:Anggaran"
或将其忽略。然后,JSF将至少完全按照您的需要处理/执行按钮和其他组件。
也可以看看:
关于jsf - @this的功能到底是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5699088/
这对你们来说可能很简单,但由于我是java新手,所以我想知道实际上什么是 接下来的部分会发生什么? if (args.length > 0) { file = args[0]; } publi
在我的 View Controller 中,我将 UITapGestureRecognizer 添加到 self.view。我在 self.view 之上添加了一个小 View 。当我点击小 View
我今天尝试从 Obj-C 开始并转到 Swift,我正在阅读文档。我试图在 Swift 中创建一个简单的 IBOutlet,但它不断给我这些错误。 View Controller 没有初始化器 req
我正在尝试使用 VIM 完成(字典和当前缓冲区),但我遇到了问题?和 !在方法名称的末尾。我能以某种方式向 vim 解释方法名称(基本上是单词)最后只能有它,而且只有一个,即 method_name
我是一名优秀的程序员,十分优秀!