Hi!
I have seen and tried the tutorial that explains how to create a Table View widget and also Displaying Database Data Using TableView Widgets.
I think what I am looking for is a tutorial to render a master / detail style rendering of data in a table view.
In the table view of the list of data items, i want to be able to tap a row which shows me a new table view with the details of the row that I previously selected. (Unlike the TableView Widget Demo which shows which row has been selected and provides a back button to the previous table view.)
I am unable to understand the sea of code in the Table View Widget Demo and need a tutorial / YouTube video which shows in simple terms how to go about doing it.
I want to display a list of class and section in the first table view line:
6A
6B
7A
7B etc.
When a user select one of the classes, the next table view provides the list of students in that class
Name 1
Name 2
Name 3
etc.
When the user selects the name, the function prints out the name of the student (for the time being. Later I will use the name selected to do something else.)