Tableview: Only show cell in column if another column has a value

-- PLEASE FILL THIS OUT TO GET HELP FASTER! --

  1. My goal:
    I only want to show the "Select Option" for rows that have a Mistake Reported:

When there's no mistake reported, it also doesn't have to be approved and I want to hide this "Select option" functionality.

  1. Issue:
    I don't know how I can hide it. Is there something like currentRow.mistake_reported that I can check?
1 Like

Hi Tom,

What you can do is make the "Editable" check box dynamic, so that users can{t take action on those rows that do not have a mistake.

The hidden setting is supposed to either hide or show the full column, and that's why it doesn't accept currentRow as reference.

1 Like

Hi @Tom_Suter,
you can make the column editable only when the Mistake reported is marked as true.
I applied your goal on my test table that you can see in the attached Image. According to my condition I am only able to update role of those users whose First name is "Patronecs."

Similar like this you can add your condition something like this:

{{currentSourceRow.Mistake_reported == "true"}}

You have to add this condition in editable section of Mistake Approved column.

2 Likes

Thanks @ahsan_ali_shah1 and @MiguelOrtiz !

2 Likes