Skip to content

Commit 9839745

Browse files
committed
hide filter/sort buttons for async tables
1 parent 37075d3 commit 9839745

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/TableView.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,10 @@ function _showtable_async!(w, names, types, rows, coldefs, tablelength, dark, id
9595

9696
options = Dict(
9797
:columnDefs => coldefs,
98-
:enableSorting => true,
99-
:enableFilter => true,
98+
# can't sort or filter asynchronously loaded data without backend support,
99+
# which we don't have yet
100+
:enableSorting => false,
101+
:enableFilter => false,
100102
:maxConcurrentDatasourceRequests => 1,
101103
:cacheBlockSize => 1000,
102104
:maxBlocksInCache => 100,

0 commit comments

Comments
 (0)