gpt4 book ai didi

java - 将信息从弹出窗口传递到 Oracle ADF 上的主窗口

转载 作者:行者123 更新时间:2023-12-02 06:38:36 24 4
gpt4 key购买 nike

我有一个弹出窗口,显示包含数据的表格,我可以选择一行,然后按“确定”按钮,我可以检索表中所选行的 idNo。

我想要做的是将这个 idNo 传递给调用弹出窗口的窗口并更新该窗口上的outputText。

有人可以帮助我吗?

按钮代码:

按钮的 newBean 类:

 public String b1_action() {
// Add event code here...

System.out.println("Select One Button has been Clicked");

// Get bindings associated with the current scope, then access the one that we have assigned to our table - e.g. OpenSupportItemsIterator
DCBindingContainer bindings =
(DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
DCIteratorBinding dcItteratorBindings =
bindings.findIteratorBinding("NameView1_1Iterator");

// Get an object representing the table and what may be selected within it
ViewObject voTableData = dcItteratorBindings.getViewObject();

// Get selected row
Row rowSelected = voTableData.getCurrentRow();

// Display attriebute of row in console output - would generally be bound to a UI component like a Label and or used to call another proces
System.out.println(rowSelected.getAttribute("IdNo"));

setOutputText("" + rowSelected.getAttribute("IdNo") + "");
closePopup("p1");

return null;
}

我希望我的函数:setOutputText()尚未实现,以便能够更新主窗口上的outputText。

谢谢最好的问候

最佳答案

根据您希望如何保留该值,将“IdNo”放入 View 或页面流范围中。

//view scope
AdfFacesContext.getCurrentInstance().getViewScope().put("IdNo", value);

//or page flow scope
AdfFacesContext.getCurrentInstance().getPageFlowScope.put("IdNo", value);

在窗口 bean 中,为弹出对话框编写一个监听器:

public void dialogCloseListener(DialogEvent dialogEvent) {
if (dialogEvent.getOutcome().equals(DialogEvent.Outcome.ok)) {
String idNo = AdfFacesContext.getCurrentInstance().getViewScope().get("IdNo");
//now you have the idNo, do whatever you want

}
}

关于java - 将信息从弹出窗口传递到 Oracle ADF 上的主窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19384995/

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