我在将字段(新字段或现有字段)的值保存到我选择的当前文档时遇到问题:
var selectedIDs = getComponent("viewPanel").getSelectedIds();
var doc:NotesDocument = database.getDocumentByID(selectedIDs[0]);
doc.replaceItemValue("Parentid","TEST VALUE");
doc.save;
当我在新文档上使用 replaceItemValue 时,它可以正常工作,但这是一个现有的邮件文档,我试图用一个值标记(它将是 ParentID - 将其分配给另一个文档),它根本不想要去工作
有什么建议吗?:)