I know that you can get the Name of the level selected on the gridcommandEventArgs on the Item Command of the Grid.
Example:
Dim SelectedLevel As String
SelectedLevel = e.Item.OwnerTableView.Name
If SelectedLevel = "second level" Then
End if
I need to do this from a button press on an event args to see what level is selected and the code will not work and I can't seem to find anything on it, does anyone have any suggestions???