如何在 vtiger CRM 中添加执行自定义功能的自定义按钮?

How to add a custom button which executes a custom function in vtiger CRM?

我有一个自定义模块,是我使用模块生成器制作的,但它并不完全符合我的要求。

我想在旁边添加自定义按钮:

按钮应如下所示:

我想让 Refresh status 按钮执行的是在 vtiger CRM 中执行自定义功能。

我的模块代码不包含 Add Docusign document 按钮,所以我无法将其硬编码到脚本中。

Google 上没有找到对我有帮助的结果,所以如果有人能帮助我解决这个问题,我们将不胜感激。

你必须改变 \layouts\vlayout\modules\VtigerCrm\ListViewHeader.tpl

{if $MODULE eq 'Your_Module'}
    <span class="btn-group">
          <button class="btn refreshStatus" type="submit">Refresh Status</button>
    </span> 
{/if}

希望对您有所帮助!