Solved
gridlayout condition
Hi everyone,
How can I apply condition of grid column so the only particular logged in user can see the specific rows in the grid layout.
Thank You
Hi everyone,
How can I apply condition of grid column so the only particular logged in user can see the specific rows in the grid layout.
Thank You
I assume you are retrieving the data to be showed in the grid from database using a query entity. The query entity will query a particular view or table. In the query entity filter the data based on loggedInUser. For example add a condition similar to this in your query entity,
a!queryFilter(
field: "Your table column name",
operator: "=",
value: loggedinuser()
),
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.