xpages rowData getDocument方法

时间:2014-07-30 12:25:41

标签: xpages xpages-ssjs

我确实为我的一个clickable添加了以下代码(此列中的显示值为链接):

if ( formName == "testForm1")

{ href + "/doc.xsp?documentId=" + docUNID + "&action=openDocument"; }

else if ( formName == "testForm2" )

{ // an opened pop-up with a message will be great! }

我读到您可以轻松使用window.alert,但在客户端。那么,我如何使用CS引用rowData.getDocument().getItemValueString("Form")

或者,可以计算Show values in this column as links属性?

我确实尝试了@WarningMessage('messageText')公式,但我还需要其他类型的警告/消息。

谢谢你的时间!

1 个答案:

答案 0 :(得分:3)

您可以使用view.postScript()将CSJS代码发送回客户端上下文。

view.postScript("alert('"+rowData.getDocument().getItemValueString("Form")+"')");