Hello
I want to know that how to show data like a list that out of many data I want to show all
names first after that when any one name is clicked I want all the related data is shown in nice way and when another name click one one should be closed and second names data should be visible.
Please help me and suggest me to do this.
(I am using SQL)
Thanks
send a select query to the database, get the names back and display them in a listpicker or listview
send another select query to the database to get all related data, then display the result in one of the table solutions, there are extensions, there are also html solutions like this one
Dynamic table layout with any number of rows and columns including table listpicker
Taifun
1 Like
@Taifun if I want to show all the data in table format without showing name first than how to do that?
well, it is the same…
send a select query to the database to get all data, then display the result in one of the table solutions
Taifun