包含 SugarCRM Dashlet 中另一个模块的字段
我创建了一个自定义模块,用于跟踪与特定帐户相关的回调。我需要知道如何构建一个小面板,可以根据给定的外键提取帐户信息。有人可以帮助我了解如何修改小面板以引用另一个模块中的数据吗?
I have created a custom module that tracks callbacks pertaining to a specific account. I need to know how to build a dashlet that can pull that account information based on the foreign key given. Can someone help me understand how to modify a dashlet to reference data from another module?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看modules/Home/dashlets 文件夹中的dashlet 定义。您想要实现什么样的视图取决于如何实现。我总是使用自定义 html 视图,并使用 php 填充数据。另一种选择是使用生成列表视图函数和查询来利用 SugarCRM 函数。
这里就不做简单的解释了。
Take a look at the dashlet definitions in modules/Home/dashlets folder. What kind on view you want to achieve will depend how to do it. I allways used custom html view that i populated with data using php. Another option is to use generate listview functions and query's to utilize the SugarCRM function.
There is no simple explanation here.