ng-sortgrid icon indicating copy to clipboard operation
ng-sortgrid copied to clipboard

feature: add 2 new inputs: disableSorting and disableMultipleSorting

Open zvs96 opened this issue 3 years ago • 1 comments

Need implement 2 new inputs like this.

<div class="example-container">
  <div *ngFor="let item of items"
       ngSortgridItem
       [disableSorting]="false"
       [disableMultipleSorting]="true"
       [ngSortGridItems]="items"
       (sorted)="logger($event)"
  >
    <div class="example-box">{{item}}</div>
  </div>
</div>

zvs96 avatar Mar 25 '21 08:03 zvs96

@zvs96 what would those event do?

nivekcode avatar Jan 18 '23 18:01 nivekcode