我正在尝试实现一个仪表板,用户可以在其中添加/删除和重新排序小部件。
加载持久状态应该不是问题,因为我可以创建如下内容:
<kendo-tilelayout-item *ngFor="let widget of widgets"
[title]="widget.title"
[col]="widget.col"
[order]="widget.order">...</kendo-tilelayout-item>
但是我怎样才能将 tilelayout 的状态保存到我的模型中呢?
我尝试了重新排序事件,但我没有任何信息来识别我的小部件模型。
public onReorder(e: TileLayoutReorderEvent): void {
// Find the model to persist changes
}