Angular:ng2智能表使用rendercomponent显示自定义操作

时间:2017-12-28 06:20:06

标签: angular angular5 ng2-smart-table

我们可以使用组件显示自定义操作吗?就像我们对列一样吗?

我想在用户被阻止时显示激活按钮,在用户激活时显示被阻止的按钮。

    actions: {
    position: 'right',
    add: false,
    edit: false,
    delete: false,
    custom: [
        {
            name: 'activate',
            title: 'Activate',
            type: 'custom',
            renderComponent: UsersActionsActivateRenderComponent,
        },
        {
            name: 'block',
            title: `Block`,
            type: 'custom',
            renderComponent: UsersActionsBlockRenderComponent,
        },
    ]
},

我正在尝试使用组件来呈现自定义操作,以便我可以对操作应用某些条件。但它只是显示title属性。

0 个答案:

没有答案