라고되고 있지 않습니다 나는 작동하는 다음 코드를 리팩토링하도록 요청했습니다 행동을 확인합니다. 이 스 니펫은 rich:dataTable
구성 요소 내부의 열에 포함됩니다. #{item}
은이 버튼이있는 행에 할당 된 객체에 대한 참조입니다 (dataTable에 var="item"
으로 정의 됨).콩 범위 손실 복합 JSF 구성 요소 및 활동 방법을 사용하여
재사용 할 수있는 JSF 컴포지트 구성 요소 (첫 번째 구성 요소)를 만들기로 결정했습니다. 그것은이 answer by elias
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich"
xmlns:cc="http://java.sun.com/jsf/composite">
<cc:interface>
<cc:attribute name="message" default="#{msg['a.default.message']}" />
<cc:attribute name="header"
default="#{msg['a.default.header']}" />
<cc:attribute name="action" required="true"
method-signature="java.lang.String action()" />
<cc:attribute name="actionListener" required="false"
method-signature="java.lang.String action()" />
<cc:attribute name="value" default="Send" />
<cc:attribute name="cancelBtn" default="#{msg['a.default.cancel']}" />
<cc:attribute name="confirmBtn" default="#{msg['a.default.ok']}" />
<cc:attribute name="render" default="@form" />
<cc:attribute name="type" default="submit" />
<cc:attribute name="image" required="false"/>
<cc:attribute name="tooltip" required="false" />
</cc:interface>
<cc:implementation>
<a4j:commandButton type="#{cc.attrs.type}" rendered="#{empty cc.attrs.actionListener and not empty cc.attrs.image}"
image="#{cc.attrs.image}" value="#{cc.attrs.value}"
oncomplete="#{rich:component('somePopup')}.show()">
<rich:tooltip followMouse="false" showDelay="1000" rendered="#{not empty cc.attrs.tooltip}">
#{cc.attrs.tooltip}
</rich:tooltip>
</a4j:commandButton>
<a4j:commandButton type="#{cc.attrs.type}" rendered="#{not empty cc.attrs.actionListener and not empty cc.attrs.image}"
actionListener="#{cc.attrs.actionListener}"
image="#{cc.attrs.image}" value="#{cc.attrs.value}"
oncomplete="#{rich:component('somePopup')}.show()">
<rich:tooltip followMouse="false" showDelay="1000" rendered="#{not empty cc.attrs.tooltip}">
#{cc.attrs.tooltip}
</rich:tooltip>
</a4j:commandButton>
<a4j:commandButton type="#{cc.attrs.type}" rendered="#{empty cc.attrs.actionListener and empty cc.attrs.image}"
value="#{cc.attrs.value}"
oncomplete="#{rich:component('somePopup')}.show()">
<rich:tooltip followMouse="false" showDelay="1000" rendered="#{not empty cc.attrs.tooltip}">
#{cc.attrs.tooltip}
</rich:tooltip>
</a4j:commandButton>
<a4j:commandButton type="#{cc.attrs.type}" rendered="#{not empty cc.attrs.actionListener and empty cc.attrs.image}"
actionListener="#{cc.attrs.actionListener}" value="#{cc.attrs.value}"
oncomplete="#{rich:component('somePopup')}.show()">
<rich:tooltip followMouse="false" showDelay="1000" rendered="#{not empty cc.attrs.tooltip}">
#{cc.attrs.tooltip}
</rich:tooltip>
</a4j:commandButton>
<rich:popupPanel id="somePopup"
header="#{cc.attrs.header}" autosize="true" resizeable="false">
<p>#{cc.attrs.message}</p>
<a4j:commandButton action="#{SomeViewController.someDeleteAction}" <!-- It should be #{cc.attrs.action} but I just put this for debug -->
value="#{cc.attrs.confirmBtn}" render="#{cc.attrs.render}"
oncomplete="#{rich:component('somePopup')}.hide()">
<cc:insertChildren />
</a4j:commandButton>
<h:commandButton value="#{cc.attrs.cancelBtn}"
onclick="#{rich:component('somePopup')}.hide(); return false;" />
</rich:popupPanel>
</cc:implementation>
</html>
에 따라 .. 그리고 이것과 이전 a4j:commandButton
바꾸기 ':
<my:buttonConfirm type="image" id="someID"
image="/someImage.gif"
action="#{SomeViewController.someDeleteAction}"
message="#{msg['a.confirmation.message']}"
render="someDataTableWithItems"
tooltip="#{msg['a.tooltip.message']}">
<f:setPropertyActionListener for="someID"
target="#{SomeViewModel.selectedItem}" value="#{item}" />
</my:buttonConfirm>
팝업가 나타나고 작업을 취소 할 수 있지만, 그것을 확인하는 때, SomeViewModel는 잃고, 또 다시 인스턴스화된다 현재의 bean은 범위 내에있다.
범위 내가 다음이 하나에 모델의 범위를 변경 지정보기의 범위는 here
에서 가져온 것입니다 : 내가 @Component
대신 @ManagedBean
을 사용하려고하지만
@Component("SomeViewModel")
@ViewScoped
, 응용 프로그램은 준 나 autowiring 오류 그래서 나는 왼쪽 @Component
. 범위가 유지되었습니다. JSF와 Spring 주석의 혼합이 이런 식으로 다른 결과를 가져올 지 모른다.
그러나 SomeViewModel
의 범위는 이제 괜찮 았고 f:setPropertyActionListener
대상은 설정되지 않았고 동작은 #{SomeViewController.someDeleteAction}
호출되지 않았습니다. 나는 이것을 디버깅 할 수 없었다. (중간에 무슨 일이 일어나는지 알기 위해 중단 점을 어디에 두어야할지 모르겠다.)
미리 도움을 주셔서 감사합니다.
내가 구현하는 방법을 잘 모르겠어요 당신의 암시. – jplatasv
@NiKoLai_ 답변을 편집했습니다 – Makhiel
@Makhiel, 도와 주셔서 감사합니다. 나는 이미 당신이 설명했던 것과 같은 방식으로 시도했지만, 세터가 해고되는 것도 아니고, 액션으로 정의 된 함수가 호출되지도 않는다. 완료 후에도 팝업이 닫히지 않습니다. 나는 자바 스크립트 콘솔에서이 메시지를 보면서 무언가가보기에서 사라지고 있다고 생각한다. Uncaught TypeError : undefined의 hide를 호출 할 수 없다. hide 함수는 아마도'a4j : commandButton'의'oncompletion' 속성에서 호출 된'hide' 팝업 함수 일 것입니다. 무슨 일이 일어날 지에 대한 다른 생각은 없습니까? 미리 감사드립니다. – jplatasv