Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ReactiveTools API/FileUpload.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ write(joinpath(pwd(), "test.csv"), "a,b\n1,2\n10,11")
@handlers begin
@out message = ""
@private df = DataFrame()
@out! table = DataTable()
@out! tbl = DataTable()
@onchange isready begin
@show "App is loaded"
end
@onchange df table = DataTable(df)
@onchange df tbl = DataTable(df)
end

@event :uploaded begin
Expand Down Expand Up @@ -54,7 +54,7 @@ function ui()

btn(class = "q-mt-lg", "Clear Log", color = "primary", @on(:click, :clear))

table(class = "q-mt-lg", :table)
table(class = "q-mt-lg", :tbl)
] |> join
end

Expand Down Expand Up @@ -85,4 +85,4 @@ route("/upload", method = POST) do
end


up()
up()