gpt4 book ai didi

java - Adf 中撤消编辑后如何保留当前行的值?

转载 作者:行者123 更新时间:2023-12-02 09:36:54 25 4
gpt4 key购买 nike

我有一个弹出表单,可以在 adf 表中插入数据,我可以通过按添加按钮插入行,我可以编辑插入的行。这是代码:添加按钮:

 JSFUtils.setExpressionValue("#{pageFlowScope.status}", "add");
RichPopup.PopupHints hints = new RichPopup.PopupHints();
ResetUtils.reset(getmyPopup());
getmyPopup().show(hints);
OperationBinding createOp = ADFUtils.findOperation("CreateInsert");
createOp.execute();

添加弹出窗口有 2 个按钮“确定”和“取消”:

确定按钮:

  getmyPopup().hide();

问题是当我在编辑模式下打开弹出窗口并更改 LOV 值并按取消按钮时,弹出窗口中有一些 LOV 会清除一些输入文本我尝试恢复旧行:并且这是编辑按钮的代码:

  rowimpl currentRow = (rowimpl )ADFUtils.findIterator("iterator").getCurrentRow();
rowimpl backupRow=(rowimpl )ADFUtils.findIterator("iterator").getCurrentRow();
JSFUtils.setExpressionValue("#{pageFlowScope.value1}",currentRow.getValue1();
.
.
. // for all values

这是取消按钮代码:

 DCIteratorBinding dciter = ADFUtils.findIterator("itertaor");
dciter.getRowSetIterator().setCurrentRow(backupRow);

问题是备份行未正确设置为旧值

最佳答案

听起来您想在用户取消编辑操作时进行部分回滚。为此,您可以为该特定 VO 编写一些方法,将它们公开为客户端接口(interface),然后将它们绑定(bind)到“取消”按钮。我记得这样做的最简单方法是:

在 VO 中创建一个与 EO 链接的 transient 属性,该属性将指示当前行状态。将其设为 Integer 并将其命名为 RowStatus 或任何您喜欢的名称。

在 VO 的 ViewObjectRowImpl 类中,找到上面创建的 transient 属性的 getter 方法并将其替换为:

public Integer getRowStatus() {
/*
2-Modified
0-New
1-Unmodified
-1-Initialized
*/
byte entityState = this.getEntity(0).getEntityState();
return new Integer(entityState);
}

ViewObjectImpl 中创建一个方法来恢复一行:

public void revertChangesCurrentRow(Row row) {
if (row!= null) {
row.refresh(Row.REFRESH_UNDO_CHANGES | Row.REFRESH_WITH_DB_FORGET_CHANGES);
}
}

ViewObjectImpl中创建另一个方法,根据每行状态(从 transient 属性中获取)删除新行或撤消更改,仅回滚此 VO:

public void revertOrRemoveRowValues() {
ViewObject myVo = this;
RowSetIterator myVoIterator = myVo.createRowSetIterator(null);
while (myVoIterator.hasNext()) {
Row nextRow = myVoIterator.next();
if (nextRow.getAttribute("RowStatus") != null) {
Integer rowStatus = (Integer) nextRow.getAttribute("RowStatus");
if (rowStatus == 2) {
//modified rows
revertChangesCurrentRow(nextRow);
} else if (rowStatus == 0) {
//new row (added by create)
nextRow.remove();
}
}
}
this.executeQuery();
}

最后,在 VO 的客户端界面中公开方法 revertOrRemoveRowValues,然后将其作为按钮拖放到页面上。这会将您上面编写的函数绑定(bind)到按钮,每次单击它时,它都会执行部分回滚,仅在该 VO 上执行回滚。它通过删除添加的新行或撤消对现有行的编辑来实现此目的,并且还将使用数据库中的值刷新 VO(由于 this.executeQuery() 命令,因此用户应该看到它是发生任何编辑之前的样子)。

关于java - Adf 中撤消编辑后如何保留当前行的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57435146/

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