Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

141
Views
disable on condition angular table

I have a table in my html file how do I disable onClick function on condition startdate> currentdate

        <ng-container matColumnDef="d">
          <th
            mat-header-cell
            *matHeaderCellDef
          >
            Start Date
          </th>
          <td
            mat-cell
            *matCellDef="let w"
            (click)="display = false; create(false, w)"
            title="Cannot start"
          >
            {{ w.startDate }}
          </td>
        </ng-container>

and suppose I want to show "cannot start" title only when startdate>current date how could I do that

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Put a condition in your click logic

.html

(click)="clicked(w)"
[attr.title]="isFuture(w) ? 'Cannot start' : 'Can start'"

.ts

clicked(w) {
    if (this.isFuture(w)) {
        this.display = false;
        this.create(false, w)
    }
}
isFuture(w) {
    return w.startdate > new Date();
}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!