gpt4 book ai didi

ng2-smart-table - 添加自定义操作按钮 - ng2-smart-table

转载 作者:行者123 更新时间:2023-12-04 07:20:19 29 4
gpt4 key购买 nike

我正在尝试向自定义操作添加一个按钮,但未在操作中添加一个新列,使该按钮与其他按钮重叠。

代码:

settings = {
actions: {
custom: [
{
name: 'Button',
title: 'Button ',
}
],
},
columns: {
name: {
title: 'Full name'
},
email: {
title: 'Email'
},
lastLogin: {
title: 'Last Login'
}
}
};

我需要放一个图片链接,因为我在这里名气不大,而且图片工具对我来说被屏蔽了。

reaction image:

我究竟做错了什么?

最佳答案

你可以试试这个。
将您的设置更改为:

settings = {
hideSubHeader: true,
actions: {
custom: [
{
name: 'yourAction',
title: '<i class="ion-document" title="YourAction"></i>'
},
{
name: 'editAction',
title: '<i class="ion-edit" title="Edit"></i>'
},
{
name: 'deleteAction',
title: '<i class="far fa-trash-alt" title="delete"></i>'
}
],
add: false,
edit: false,
delete: false
}
...
};

然后将其添加到您的 component.scss 中
    :host /deep/ ng2-st-tbody-edit-delete {display: flex !important;
height: 0 !important;
}

:host /deep/ ng2-st-tbody-custom a.ng2-smart-action.ng2-smart-action-custom-custom {
display: inline-block;
width: 50px;
text-align: center;
font-size: 1.1em;
}

:host /deep/ ng2-st-tbody-custom a.ng2-smart-action.ng2-smart-action-custom-custom:hover {
color: #5dcfe3;
}

关于ng2-smart-table - 添加自定义操作按钮 - ng2-smart-table,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52086092/

29 4 0