Posted 29 June 2019, 11:13 am EST
Hello, dear developers!
I have a FlexGrid where with 3 columns: name, role and date. But in my data source, I have ID instead of name. So i set dataMap for this column.
My DataMap (id, name) comes from table like this:
| id | Name | Role | Status |
| 0 | Jack | Waiter | active |
| 1 | Jill | Waiter | fired |
| 2 | Daniel | Manager | active |
And the grid itself is sort of journal:
| Name | Role | Date |
| Jack | Waiter | sep.1 |
| Jill | Waiter | sep.2 |
| Jack | Waiter | sep. 3 |
ect.
The problem is that i want only active people to be in dropDown…
Hope my question is clear… Can you please suggest a solution?