-
Notifications
You must be signed in to change notification settings - Fork 12
Ability to move columns as well as rows #3
Copy link
Copy link
Open
Description
Its great that there is the move icon next to each row, but ideally there would also be a move icon for each column.
This may require a rewrite of some of the core functionality in the app plugin, as the table.cells object, is really an array of rows
table.cells = [ [ // row 1], [// row 2], [// row 3] ]
so moving a row is simple as its just
table.cells = [ [ // row 2], [ // row 1], [// row 3] ]
whereas the corresponding action for the movement of a column within the current setup would require more granular array editing
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
