When working with the Table widget, is there a way to read the value of an entry? I’m trying to get my table to display the most recent entry at the top and then a FIFO set up. So that the entries are ordered from most recent to oldest the further you go down the table. The only way I know how to do this is the update the entry in position 1 and then the entry in position 2 is equal to the old entry 1 and the list gets updated with the previous values of the entries in the position above them. But to do this, I need to be able to read the value of an entry and save it in an ‘oldvalue’ variable.
Any ideas on how to do this?
Thanks.