Skip to content

Commit

Permalink
Merge pull request #12 from JuliaComputing/sp/noasyncfilter
Browse files Browse the repository at this point in the history
hide filter/sort buttons for async tables
  • Loading branch information
pfitzseb authored Feb 27, 2019
2 parents 1ad7739 + 9839745 commit 63af68d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/TableView.jl
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,10 @@ function _showtable_async!(w, names, types, rows, coldefs, tablelength, dark, id

options = Dict(
:columnDefs => coldefs,
:enableSorting => true,
:enableFilter => true,
# can't sort or filter asynchronously loaded data without backend support,
# which we don't have yet
:enableSorting => false,
:enableFilter => false,
:maxConcurrentDatasourceRequests => 1,
:cacheBlockSize => 1000,
:maxBlocksInCache => 100,
Expand Down

0 comments on commit 63af68d

Please sign in to comment.