Explain to me how I can work with the Selectable option. I have 2 controls on a page. On the left, I have a TreeList and on the right I have a Grid. The TreeList contains a hierarchical list of groups for which the user is authorized. I'm going to use this group selection to "filter" the data that will be displayed in the Grid control. So, I need the selection of a group in the TreeList to prompt the refresh of the Grid which then must use the groupId of the selected TreeList's node.
- On load, how can selection of a TreeList Node be set to a default group from a MVC Action?
- On selection, how can this value fire an event that will reload the Grid?
An example would be appreciated. Thanks for your help,
Joel