gpt4 book ai didi

javascript - 从 XPages 中的 SSJS 内部调用 CSJS

转载 作者:行者123 更新时间:2023-11-30 07:05:16 25 4
gpt4 key购买 nike

我目前正在使用 JavaScript 从 LotusScript 脚本库重写一个函数。 LotusScript 函数同时包含前端和后端元素 -输入框用于从用户那里收集信息 - 所以我想知道如何最好地做到这一点。是否可以在 ssjs 中使用 csjs 调用模态对话框窗口?

最佳答案

这是显示/隐藏对话框的 SSJS 和 CSJS 命令:

SSJS:

var comp = getComponent("serverSideId");
//To Open the dialog
comp.show();
//To close the dialog
comp.hide();

CSJS

//To Open the dialog
XSP.openDialog("#{id:serverSideId}");
//To close the dialog
XSP.closeDialog("#{id:serverSideId}");

为了好玩,执行 CSJS 的 SSJS:

//To Open the dialog
facesContext.getViewRoot().postScript("XSP.openDialog('#{id:serverSideId}')");
//To Close the dialog
facesContext.getViewRoot().postScript("XSP.closeDialog('#{id:serverSideId}')");

关于javascript - 从 XPages 中的 SSJS 内部调用 CSJS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16148332/

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