In lightswitch, I need to make dynamic cascading dropdown lists based on a recursive relationship:
Table "Categories" includes:
Id
Name
ParentId
here is the desired scenario:
- a screen showing a drop down list for the categories with no parent (ParentId = Null).
- once user selects a specific category, another drop down to be created which includes the selected category children.
- User can select another child category, and show another dynamic dropdown, and so on till we have categories drop down with no children.
Thanks & I really appreciate your help with this.