Using the Reactive Search UI Kit how can i create hierarchical menu looking like this (but with the traditional checkbox):
This component would take data from ES index with records looking like this :
country: "China",
cities: ["Guangzhou","Shanghai","Chongqing"]
country: "India",
cities: ["Mumbai","Delhi","Bangalore"]
I am trying to show cities only when the country is "selected". And users could select cities in multiple countries.
Thanx