What I’m trying to do:
I’ve seen several examples of data table sorting like:
results = app_tables.my_table.search(tables.order_by("Name"))
and this returns a sorted dictionary. However, I would like sorting to be updated to be reflected in app_tables.my_table and not just in the “results” return. I don’t want to have to call the sort function each time I want to display this table. Is there a better way to sort app_tables innately without having to rebuilt the table from the “results” dictionary?