代码之家  ›  专栏  ›  技术社区  ›  alphapilgrim

禁用角材质MatSortable中的第三状态

  •  0
  • alphapilgrim  · 技术社区  · 6 年前

    'asc' | 'desc' | '' ,我只想 'asc' | 'desc' 可用。我目前正在过滤排序方向,但我想知道,从用户的角度来看,这是否足够直观,即使标题确实显示一个带有当前排序方向的箭头(请参见下面的图片),也不会看起来像一个bug。

    Oninit lifecycle hook我设置了一个排序默认值,我认为将disableClear设置为true可以解决这个问题,但没有成功。感谢您的帮助!

    defaultSort: MatSortable = {
      id: 'displayName',
      start: 'asc',
      /**
       * Whether to disable the user from clearing the sort by finishing the sort direction cycle.
       * May be overriden by the MatSortable's disable clear input.
       */
      disableClear: True
    };
    
    ngOnInit() {
      this.sort.sort(this.defaultSort);
    
      this.sort.sortChange.pipe(
        filter(sort => !!sort.direction),
        switchMap(sort => {
          // makes API request only with an actual direction.
        })
      );
    }
    

    No sort direction

    asc enter image description here

    1 回复  |  直到 6 年前
        1
  •  14
  •   Flignats    6 年前

    我对你的代码有点不清楚,但有点类似:

    @ViewChild(MatSort) sort: MatSort;

      ngOnInit() {
        ....
        this.dataSource.sort = this.sort;
      }
    

    在定义排序后添加此行

    this.sort.disableClear = true;
    

    Example Stackblitz

        2
  •  6
  •   decebal    4 年前

    disableClear 在模板中,例如:

    <th mat-sort-header="firstName" disableClear>First name</th>