Example: I have three rows in the DB.
Column list: Pet_Type | Species | Size
First Row: Dog | Canine | Large
Sec. Row: Cat | Feline | Small
Thrd Row: Hamster | Rodent | Tiny
This DB list is shown on a page in my app. I want to be able to click on say 'Cat' and have it show the entire row for 'Cat' in a panel. If I choose 'Dog', I want the entire row for 'Dog' to show.
Now, opening the panel with the gridcell or label is cake, but how do I get it dynamically recognize the specific label I am clicking on so it will return the correct row into the panel? I know I am close, but as of now no matter which Name cell or Name label for instance, that I click on, it still only returns the first row from my DB list.
Any help is GREATLY appreciated. Thanks!