Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我设法使用 Zimbra 的 Javascript API 在 Zimbra 的 UI 的联系人工具栏中添加了一个按钮。有没有办法再次使用 javascript API 保存当前正在编辑的联系人?
谢谢你的帮助。
有一个解决方法就是抓住保存按钮并模拟点击它。
SugarBee.prototype.saveContactAndSendToSugar = function (toolbar,controller,ev) { [...code...] var save_button = toolbar.getButton("SAVE"); save_button._emulateSingleClick(); [...code...] }