Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
933 views
in Technique[技术] by (71.8m points)

uitableview - Angular column selectable table - column position

I want to add column selectable table in my angular code. ( similar to : https://stackblitz.com/edit/poc-column-selector?file=app%2Ftable-basic-flex-example.ts ) But I want the sequence of the columns to be same. That means after deselect and select again, it should append the column to its original position only and not at the end or at any random position.

Can anyone please suggest, how to achieve this ?

question from:https://stackoverflow.com/questions/65626008/angular-column-selectable-table-column-position

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

the "key" is the lines

<mat-header-row *matHeaderRowDef="group.value"></mat-header-row>
<mat-row *matRowDef="let row; columns: group.value;"></mat-row>

Columns should be not group value else an fixed array filter if the value is in the group value. So,

<mat-button-toggle-group [multiple]="true" #group="matButtonToggleGroup" 
         (change)="setColumns()">

  @ViewChild('group') toggle: MatButtonToggle;
  columns:any[]
  setColumns(){
    this.columns=['position','name','weight','symbol'].filter(x=>this.toggle.value.indexOf(x)>=0)

  }

And change:

  <mat-header-row *matHeaderRowDef="columns"></mat-header-row>
  <mat-row *matRowDef="let row; columns: columns"></mat-row>

stackblitz

NOTE you can also use a getter like

  get columns()
  {
    return ['position','name','weight','symbol'].filter(x=>this.toggle.value.indexOf(x)>=0)
  }

And you needn't use the event (change)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...