Array of Array in XML Response
Hello. I am using an XML Response as a DataSource. It has an array of books, and I can process the array by changing books[1] to books, so that it will iterate through each book. Each book also has chapters, so I'm trying to get the chapters that are specific to each book. I have a Book DataSource (XML) and a Chapters DataSource (XML), but I cannot figure out how to get the chapters that are specific only to the book I am processing. It seems like there would be an easy way to get the row index so that I can do something like: books[rowIndex]:chapters. In other words...get all of the chapters for book[1], then book[2], etc. Any help is appreciated!Solved1.5KViews0likes3Comments