如何在jqwidgets中设置点击功能(角度2)

时间:2017-04-12 01:43:24

标签: javascript jquery angular jqgrid

我在角度2中使用了jq小部件但是在单击按钮时调用函数失败了。

这是我的代码,

   var cellsrenderer = function (row, column, value ) {
        return '<button (click)="open(value)">edit</button>';

    }

    this.columns =
        [
            {
                text: 'S.NO', columntype: 'textbox', filtertype: 'input',  width: 100, cellsalign: 'center'
            },
            {
                text: 'Name', columntype: 'textbox', filtertype: 'input', datafield: 'name', width: 215
            },
            {
                text: 'Actions', filtertype: 'input',datafield: 'id', cellsrenderer: cellsrenderer, width: 80, filterable: false
            }
        ];
}

这时当我调试功能时,我自己没有打电话,所以我无法根据我的要求重定向到下一页。任何人都可以帮助我。谢谢。

0 个答案:

没有答案