gpt4 book ai didi

javascript - 无法显示自定义对话框

转载 作者:行者123 更新时间:2023-11-27 23:18:04 24 4
gpt4 key购买 nike

我有以下代码,应该弹出一个对话框,并让用户通过按按钮选择两个选项之一。不幸的是,它没有显示。过去的评论是“Y”,但 getComponent 行不会触发该对话框。我做错了什么?

<xp:button styleClass="btn btn-primary" value="Un-Cancel" id="button28">
<xp:this.rendered><![CDATA[#{javascript:GASODIDoc.getItemValueString("Status") == "Cancelled"}]]></xp:this.rendered>
<xp:eventHandler event="onclick" submit="true" refreshMode="norefresh" disableValidators="true">
<xp:this.action><![CDATA[#{javascript:
if (GASODIDoc.getItemValueString("Past Reviews") == "Y"){
getComponent('UnCancelDocument').show();
}
GASODIDoc.replaceItemValue("Status", sessionScope.status);
GASODIDoc.save();
context.redirectToPage("index.xsp")}]]></xp:this.action>
</xp:eventHandler>
</xp:button>

这是对话框

<xe:dialog id="UnCancelDocument" styleClass="dialogForm">
<xp:panel>
<xp:panel styleClass="dialogRow">
<xp:label
value="Do you want to return this GASODI to Draft or Document Generation status?">
</xp:label>
</xp:panel>
</xp:panel>

<!-- Save Button -->
<xp:panel styleClass="dialogActions">
<xp:button value="Return to Draft" styleClass="btn btn-primary"
id="button51">
<xp:eventHandler event="onclick" submit="false"
immediate="true" save="false" disableValidators="true">
<xp:this.script><![CDATA[sessionScope.status = "Draft";
XSP.closeDialog('#{id:UnCancelDocument}')]]></xp:this.script>
</xp:eventHandler>
</xp:button>

<!-- Cancel Button -->
<xp:button value="Return to Document Generation"
styleClass="btn btn-primary" id="button52">
<xp:eventHandler event="onclick" submit="false"
immediate="true" disableValidators="true">
<xp:this.script><![CDATA[sessionScope.status = "Document Generation";
XSP.closeDialog('#{id:UnCancelDocument}')]]></xp:this.script>
</xp:eventHandler>
</xp:button>
</xp:panel>
</xe:dialog>

最佳答案

行为符合预期。该代码实际上运行并“显示”您的对话框,但随后继续执行其余代码,最终导致重定向。换句话说,该对话框不会阻止其余代码的运行。

您需要将其余逻辑移至用户在对话框内单击的按钮,例如作为关闭对话框的一部分。

关于javascript - 无法显示自定义对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35646505/

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