Quantcast
Channel: Ionic Forum - Latest topics
Viewing all articles
Browse latest Browse all 70440

Only one selection on table ionic 3

$
0
0

I want to ask, so I want to make app that can only select one specific row and column on table on ionic 3, I want to develop ionic for android. Here is the screenshot and code.

<tr *ngFor="let pc of priceList[u]; let i = index">
        <td>{{pc.dp/1000000|number:'1.1-3'}}</td>

        <ng-container *ngFor="let amount of priceList[u]; let j = index">
          <td (click)="tableClicked(i, j)" *ngIf="!applyStyleToSelected(i, j)">{{amount.instAmt/1000000|number:'1.1-3'}}</td>
          <td class="selected" (click)="tableClicked(i, j)" *ngIf="applyStyleToSelected(i, j)">{{amount.instAmt/1000000|number:'1.1-3'}}</td>
        </ng-container>

      </tr>
.selected{
  background-color: darkred;
  color: white;
}
tableClicked(row: number, col: number) {
    console.log('row -> ', row);
    console.log('col -> ', col);

    if(this.selectedIndex && row == this.selectedIndex.r && col == this.selectedIndex.c) {
      this.selectedIndex = null;

      return;
    }

    this.selectedIndex = {
      r: row,
      c: col
    };
  }

  applyStyleToSelected(row: number, col: number): boolean {
    if(!this.selectedIndex) {
      return false;
    }

    return this.selectedIndex.r == row && this.selectedIndex.c == col;
  }

1 post - 1 participant

Read full topic


Viewing all articles
Browse latest Browse all 70440

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>