gpt4 book ai didi

ajax - 如何使用 AjaxBehaviorEvent 获取 selectedDate?

转载 作者:行者123 更新时间:2023-12-02 00:32:36 26 4
gpt4 key购买 nike

<h:outputLabel id="remainingDays" value="#{bean.DueDate}" title="#{bean.remainingDays}"  >
<p:ajax listener="#{bean.listenerMethid}" update="remainingDays,remainingDays" process="remainingDays" event="mouseover"></p:ajax>
</h:outputLabel>
<p:tooltip for="remainingDays" id="tooltip" />



public void listenerMethod(AjaxBehaviorEvent event){


}

如何在listenerMethod()内使用AjaxBehaviorEvent获取Duedate

最佳答案

这应该作为通过 AjaxBehaviorEvent 获取值的通用方法:

public void listenerMethod(AjaxBehaviorEvent event) {
String dueDate = (String) ((UIOutput)event.getSource()).getValue();
}

但是,在您的情况下,您可以通过变量(或getter)访问它,因为它与listenerMethod位于同一个bean中。

关于ajax - 如何使用 AjaxBehaviorEvent 获取 selectedDate?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13890684/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com