I am trying to learn SceneGraph. I have been manipulating the
SimpleGridWithDetailsAndVideo sample and have been able to make some changes. I have the first grid as a standard full-screen grid and make it so that if you click on an item in the grid the user is brought to a different grid that includes an image preview at the top of the screen along with the description. I also have been able to load in different content than what is provided.
I would like this second grid screen to only contain a single row from the first grid screen. Currently, the content is set with:
m.gridScreen2.content = m.gridScreen.content
I have been digging through and experimenting with this node but I have been unable to find a way set only a single row to my grid content. :shock:
How can I set only a single row in my second grid? Can I reference a single row of the grid content from this example? :?:
Thank you very much for taking the time to read this. Any information at all is very appreciated.
🙂 🙂:?ps: I have tried just running a new function in HomeScreen to pull in the single row that I want but I am running into thread problems. Apparently, you can't do a lot of things in these scene functions. If you have any information on this front it would also be very appreciated. For example, how would I reference a function from another brs file from the OnRowItemSelected() function in the HomeScene brs? :?: I think the answer is you can't but I am confused at what the flow should be for this. I don't know what I want until the user clicks.