Skip to content

Ability to move columns as well as rows #3

@Jargon8524

Description

@Jargon8524

Its great that there is the move icon next to each row, but ideally there would also be a move icon for each column.

image

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions