web-client-ui icon indicating copy to clipboard operation
web-client-ui copied to clipboard

Goto row should show the loader and allow rollback like sort or quick filters

Open mattrunyon opened this issue 1 year ago • 0 comments

Goto row does not show any loading state or have any way to cancel. This can be pretty bad for big tables.

Just try this table. Goto value Odd = 0 (first row). Then click the arrow to go to the next. It will eventually (took 15-30s for me) get to the value. But there is no indicator anything is happening and no way to cancel.

from deephaven import empty_table
t = empty_table(2147483647).update_view(["X=i", "Odd=X%2147483646"])

This issue seems to appear when you have a large gap between consecutive values

mattrunyon avatar Feb 22 '24 22:02 mattrunyon