I Have a enumeration class Status
, which has enum
values(say X, Y, Z, A, B, C) and these values are set in another class based on certain conditions.
Now I would like to create new comboBox item GroupM
which would display A, B, C and similarly item GroupN
which would display rows related to X, Y, Z:
How can I achieve that? I believe this may be vague requirement but this is the maximum I can explain.