CRM 3.0 PreCreate 标注可以提前填写表单字段吗?
我刚刚完成了我的第一个 CRM 标注,它运行得很好,但它实际上似乎在保存调用它的表单后才生效。这是一个 PreCreate 交易,它将一个值分配给表单上存在的属性之一。有什么方法可以让它分配新值并在加载后立即将其显示在表单上,或者这就是它的工作方式?
I just finished my first CRM callout, and it's working great, but it doesn't actually seem to take effect until the form that calls it is saved. It's a PreCreate deal that assigns a value to one of the attributes present on the form. Is there any way to get it to assign the new value and display it on the form as soon as you load it, or is this just the way it works?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须向表单的 onload 事件添加一些 JavaScript,并以这种方式默认任何表单字段。标注在保存事件发生后才会触发,因此它们不能用于 UI 中的默认字段。
You'd have to add some JavaScript to the onload event of the form and default any form fields that way. Callouts don't fire until after the save event happens, so they can't be used to default fields in the UI.