How to access values from other columns in a list item
I have a list component, in it is a series of list items generated from a rest service. in the list item there is a grid, 3 columns. In the first column I have a code (in a label), second column has a description (also in a label). The 3rd column is a button. When I click on the button I go to a new page. I'd like to display the code & the description from the same line as the button to show on the heading of the new page. I'm sure I'd have to do this via a couple of local storage variables. The problem I'm having is getting the values into the local storage variables. I've tried something like Appery('code').text() but all I get is a blank field. I even tried a generic service but all I got there was a list of all the codes - not the one corresponding to the button clicked. Any other ideas ?