We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b78efb commit ed4bf42Copy full SHA for ed4bf42
1 file changed
src/TableView.jl
@@ -74,7 +74,8 @@ function showtable(table;
74
title::String = "",
75
height = :auto,
76
width = "100%",
77
- cell_changed = nothing
+ cell_changed = nothing,
78
+ async_threshold = 10_000,
79
)
80
rows = Tables.rows(table)
81
it_sz = Base.IteratorSize(rows)
@@ -110,7 +111,7 @@ function showtable(table;
110
111
types = schema.types
112
end
113
- async = tablelength === nothing || tablelength > 10_000
114
+ async = tablelength === nothing || tablelength > async_threshold
115
116
w = Scope(imports = ag_grid_imports)
117
0 commit comments