I recently setup a grid screen for movies. Below is the process as to how they are inserted into the grid screen…
- Within a foreach, pull the Genre title (i.e. Comedy, Mystery)
- Search (using SOLR) the index XML for all movies under the genre title
- Within the foreach from step 1, do another foreach for each movie
- Pull the data for the current movie and store in an associative array
- Push the movie (associative array) into the current row list array (standard array)
- After all movies have been pushed into the current row list array, push the list array into the grid screen
- Repeat for the next genre is movies exists for the next genre
My issue is that I cannot access the actual data that’s stored for the movie selected in the grid screen. I know that I can obtain the row index and column index, but is there a way I can access the actual data for that movie in the grid screen to push to the movie springboard screen? Is the grid screen just a SET component with no GET methods?
Thanks,
Kevin
