You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i use the reactive button trick with pluto to force a new random number dependent calculation. specifically, i have a line: @bind go Button("Recompute")
in one cell and another cell that looks like this:
begin
go
ob =function1()
output1, output2 = function2(ob);
Print()
end
where function1 invokes rand()
i followed the readme and did
using PlutoSliderServer
path_to_notebook = download("https://raw.githubusercontent.com/fonsp/Pluto.jl/v0.17.2/sample/Interactivity.jl") # fill in your own notebook path here!
PlutoSliderServer.run_notebook(path_to_notebook)
with my own repo and pluto file and the webpage renders fine but the button is not active, i.e. doesn't cause a re-evaluation (apparently).
am i doing something wrong or is PlutoSliderServer not yet working with a bound Button object?
thanks for any guidance.
The text was updated successfully, but these errors were encountered:
i use the reactive button trick with pluto to force a new random number dependent calculation. specifically, i have a line:
@bind go Button("Recompute")
in one cell and another cell that looks like this:
where
function1
invokesrand()
i followed the readme and did
with my own repo and pluto file and the webpage renders fine but the button is not active, i.e. doesn't cause a re-evaluation (apparently).
am i doing something wrong or is PlutoSliderServer not yet working with a bound Button object?
thanks for any guidance.
The text was updated successfully, but these errors were encountered: