Lotus中常用的功能按钮公式

视图中(即带嵌入视图的页面和表单)常用的功能按钮有:
上一页:@DbCommand("Domino"; "ViewPreviousPage")
下一页:@DbCommand("Domino"; "ViewNextPage")
全部展开:@Command([ViewExpandAll1])
垒部折叠:@Command([Viewc0llapseAll])
刷新:@URLOpen("PageAll~" nPage )
新建:@Command(fCompose YourFormName”)
搜索:@Command([ViewShowSearchBarl])


表单中常用的功能按钮有:
上一篇文档: @Command([NavigatePmv])
下一篇文档: @Command([NavigateNext])
新建:@Command([Compose];"YourFormName”)
保存:@Command([FileSave]):
退出:@Command([OpenPage];"PageAll )
编辑:@Command([EditDocument])
删除:@Command([EditClear1)

关闭:@Command([FileCloseWindow])
保存关闭:@PostedCommand([FileSave]);
   @PostedCommand([FileCloseWindow])
取消操作:FIELD SaveOptions := "0";
   @PostedCommand([FileCloseWindow])
全选:@Command([EditSelectAll])
全部不选:@Command([EditDeselectAll])
关闭:self.close();
返回:window.history.back();
上一页:@DbCommand("Domino"; "ViewPreviousPage")
下一页:@DbCommand("Domino"; "ViewNextPage")
新建流程:window.open("./FlowConfigureProcess?openForm")
删除:@Command([MoveToTrash])
清空:@Command([EmptyTrash])
展开:@Command([ViewExpandAll])
折叠:@Command([ViewCollapseAll])

猜你喜欢

转载自avanry.iteye.com/blog/619201