我希望网格上的小部件在右上角有删除按钮。是否需要设置选项才能启用它。如果不是如何在右上角显示删除按钮(x)?
答案 0 :(得分:0)
不是我知道的。但是,您可以将css {position:relative}添加到gridster-item中的容器,然后将该位置添加到按钮的绝对位置。
<gridster-item *ngFor="let item of items">
<div style="position:relative">
<button style="position:absolute; top:0; right:0"
(click)="myRemoveFunction(item)">X</button>
...
</div>
</gridster-item>