Hi,
I'm trying to build a simple application with dynamic filtering on dropdowns with the following relations
| MAKE |
MODEL |
VARIANT |
| AUDI |
A3 |
V1 |
| AUDI |
A4 |
V2 |
| AUDI |
A6 |
V3 |
| HONDA |
CIVIC |
V1 |
| HONDA |
CITY |
V2 |
| HONDA |
CRETA |
V3 |
| HYUNDAI |
VERNA |
V1 |
| HYUNDAI |
ELANTRA |
V2 |
I need to create rules such that if a user selects "HONDA" in the MAKE field, only the corresponding MODEL & VARIANT
should be visible.
How do I do this ?