-
Notifications
You must be signed in to change notification settings - Fork 33
Closed
Labels
Milestone
Description
Description
The copy selection handler copies the original order of the table, not the visible order
Steps to reproduce
- Use this Python code
from deephaven import new_table
from deephaven.column import int_col
base = new_table([
int_col("A", [1]),
int_col("B", [2]),
int_col("C", [3]),
int_col("D", [4]),
int_col("E", [5]),
int_col("F", [6])
])
- Drag column B to the right to switch with column C.
- Select and copy the row
- Paste somewhere else (like a notebook or the console)
Expected results
Pastes 1 3 2 4 5 6
Actual results
Pastes 1 2 3 4 5 6
Versions
- Deephaven: 0.12