Stipple.jl
Stipple.jl copied to clipboard
The reactive UI library for interactive data applications with pure Julia.
Hello everyone, I am building my own web app with Stipple.jl. I am struggling now on uploading files. I followed the demo in https://github.com/GenieFramework/StippleDemos/blob/master/BasicExamples/CsvUpload/CSVUpload.jl and wrote my own CSV uploader....
i wonder is it possible to have a SPA(Single Page Application) with stipple so we can render different models in one page without refreshing the page and create multiple pages...
@essenciary @hhaensel UMD version doesn't have vue router included in it. So we can't really use things like `tabs` in quasar and it keeps coming back(many users have asked for...
I have this code that runs a @task in which a counter gets increased each second. It worked in 0.25.15, but after upgrading to **0.20.20** it stops working. ```julia using...
First of all, thank you for the awesome package. I've spent a bunch of time debugging some of the Stipple.jl demos. I've read through the recent PRs and issues and...
A Genie Builder user reported this issue: We found a bug with the table display. Basically, whenever we send a table with column values that JSON3 can't directly handle, the...
I have an app where I want to sync the UI across multiple users, so I'm using the `@init`macro. When launching the app with `using GenieFramework; Genie.loadapp(); up()` I'm getting...
Sometimes when I start my stipple server I get this and I have to restart it. Can someone point me at a way to research it. I don't want to...
I have a variable `total` that each second is increased by an amount `x` taken from a text field in the UI. This is done asynchronously with a @task so...
`model = @init` is slow compared to calling the functions directly. MWE: ```julia using GenieFramework @genietools @clear @in a = 1 @in s = "hello" @handlers begin @onchange a begin...