角度网格 2 使用按钮调整小部件的大小



我有如下所示的网格项目并使用 https://github.com/tiberiuzuld/angular-gridster2

  <gridster-item [item]="myAptInfolet" class="shadow">
                               <app-my-appointments-infolet></app-my-appointments-infolet>
                        </gridster-item> 

.ts

this.myAptInfolet = {cols: 1, rows: 2, y: 0, x: 4}

调整大小功能就像

test(){
    this.myAptInfolet.cols = 2
    this.options.api.resize()
   }

但什么也没发生。 控制台中没有错误。 请告知

我是

角度网格2的新手,但我设法对网格的布局进行了一些动态更改,所以我会尽力帮助你。

我看不到您的"选项"属性来自哪里,但它应该是 GridsterConfig 的一个实例,因此您的 .ts 文件的开头应如下所示:

import { GridsterConfig, GridsterItem }  from 'angular-gridster2';
   options: GridsterConfig;

定义选项后,可以通过调用 api 的 optionsChanged 方法刷新网格器的布局,如下所示:

test(){
    this.myAptInfolet.cols = 2;
    this.options.api.optionsChanged();
}

你可以参考angular-gridster2 github找到一个非常小而干净的例子,说明如何与项目动态交互并更改网格的布局:

import { GridsterConfig, GridsterItem }  from 'angular-gridster2';
   options: GridsterConfig;
   dashboard: Array<GridsterItem>;
   static itemChange(item, itemComponent) {
     console.info('itemChanged', item, itemComponent);
   }
   static itemResize(item, itemComponent) {
     console.info('itemResized', item, itemComponent);
   }
   ngOnInit() {
     this.options = {
       itemChangeCallback: AppComponent.itemChange,
       itemResizeCallback: AppComponent.itemResize,
     };
     this.dashboard = [
       {cols: 2, rows: 1, y: 0, x: 0},
       {cols: 2, rows: 2, y: 0, x: 2}
     ];
   }
   changedOptions() {
     this.options.api.optionsChanged();
   }
   removeItem(item) {
     this.dashboard.splice(this.dashboard.indexOf(item), 1);
   }
   addItem() {
     this.dashboard.push({});
   }

我希望这能有所帮助。

您没有将对调整大小的项目的引用传递到方法test() 中。基于Sebapabst0的答案,这里有一个示例StackBlitz:https://stackblitz.com/edit/angular-ivy-jjati4

这对我有用:

import { GridsterConfig, GridsterItem }  from 'angular-gridster2';
   options: GridsterConfig;
   dashboard: Array<GridsterItem>;
   ngOnInit() {
     this.options = {
         itemResizeCallback: (item: GridsterItem, itemComponent: GridsterItemComponentInterface) => {
            this.updateSizeOnServer(item, itemComponent);
          }
     };
     this.dashboard = [
       {cols: 2, rows: 1, y: 0, x: 0},
       {cols: 2, rows: 2, y: 0, x: 2}
     ];
   }
  updateSizeOnServer(item, itemComponent) {
    // call some API tu update the size
  }

相关内容

  • 没有找到相关文章

最新更新