You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code that saves storage data accepts data in a specific order, however the display of this data on the site doesn't respect this ordering since the columns are sorted on the server.
I would like to investigate and see what it would take to attempt to maintain the column order. One problem is that different versions of the widget could save different data so that might present a challenge.
If it's as simple as removing the line that sorts the columns then that's great. If it would be a massive undertaking then I would probably not want to fix it and simply make it clear in the documentation not to expect a strict ordering.
The text was updated successfully, but these errors were encountered:
The code that saves storage data accepts data in a specific order, however the display of this data on the site doesn't respect this ordering since the columns are sorted on the server.
So, you could code this:
storage.create("Table", "z1", "y1", "z2", "y2", "total")
However it would be displayed in a table as this:
total | y1 | y2 | z1 | z2
I would like to investigate and see what it would take to attempt to maintain the column order. One problem is that different versions of the widget could save different data so that might present a challenge.
If it's as simple as removing the line that sorts the columns then that's great. If it would be a massive undertaking then I would probably not want to fix it and simply make it clear in the documentation not to expect a strict ordering.
The text was updated successfully, but these errors were encountered: