Skip to content

Commit 63af68d

Browse files
authored
Merge pull request #12 from JuliaComputing/sp/noasyncfilter
hide filter/sort buttons for async tables
2 parents 1ad7739 + 9839745 commit 63af68d

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
@@ -103,8 +103,10 @@ function _showtable_async!(w, names, types, rows, coldefs, tablelength, dark, id
103103

104104
options = Dict(
105105
:columnDefs => coldefs,
106-
:enableSorting => true,
107-
:enableFilter => true,
106+
# can't sort or filter asynchronously loaded data without backend support,
107+
# which we don't have yet
108+
:enableSorting => false,
109+
:enableFilter => false,
108110
:maxConcurrentDatasourceRequests => 1,
109111
:cacheBlockSize => 1000,
110112
:maxBlocksInCache => 100,

0 commit comments

Comments
 (0)