How do you determine which table you want to pull the time from? Is the idea that only one table can be selected at a time? How will you handle if a user selects a row in each table?
The determination is for the user to decided which table to select table they want to get more information from.
Yes the idea is that only one table can be viewed at a time. If a user selects from table 1 it will show that information, if they select table 2 it should show that information. If they do select table 1 and then table 2, i would like the selection from table 1 to be removed.
You could do this using message handlers.
Each table would have an onRowClick script action that sends a ‘message’ which includes the selected time field as a payload.
time = self.props.selection.data[0]['Time Added']
system.perspective.sendMessage('UpdateTime',payload = {'Time': time})
Then on your label component define a message handler as follows: