popupview中的下载按钮

时间:2019-04-10 02:15:57

标签: php sugarcrm suitecrm

我一直在尝试在弹出窗口的按钮中添加下载功能,但是它不起作用。

我已创建文件view.popup.php

代码是:

<?php

require_once('include/MVC/View/views/view.popup.php');

class FP_PAYMENTSViewPopup extends ViewPopup
{
    public function __construct()
    {
        parent::__construct();
    }

    public function display()
    {

        global $app_strings;
        $id = BeanFactory::getBean('FP_PAYMENTS', $this->bean->id);
        $url = "index.php?module=FP_PAYMENTS&action=generatePaymentsPdf&record={$id}";
        echo parent::display();
        echo <<<PaymentButton
        <input type="button" class="button" style="width: 150px;" href="#" value="Payment Pdf" onmouseover='hiliteItem(this,"yes");' 
        onmouseout='unhiliteItem(this);' 
        onclick="SUGAR.ajaxUI.loadContent('{$url}')"
        " /> 
PaymentButton;
    }
}

请任何专家可以帮助我找出问题所在?预先感谢。

1 个答案:

答案 0 :(得分:0)

打印付款按钮时出现很多错误。您还没有管理引号和转义序列。

您需要尝试这样

  echo "<input type='button' class='button' style='width: 150px;' href='#' value='Payment Pdf' onmouseover='hiliteItem(this,\'yes\');' 
    onmouseout='unhiliteItem(this);' 
    onclick='SUGAR.ajaxUI.loadContent(\'{$url}\')'
     />"