# Anyone used Stipple.jl with ZMQ?

**URL:** https://discourse.julialang.org/t/anyone-used-stipple-jl-with-zmq/83706
**Category:** New to Julia
**Tags:** question, package
**Created:** [July 3, 2022, 3:16pm UTC](https://discourse.julialang.org/t/anyone-used-stipple-jl-with-zmq/83706 "2022-07-03T15:16:32Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![anon69491625](https://avatars.discourse-cdn.com/v4/letter/a/aeb1de/32.png) [@anon69491625](https://discourse.julialang.org/u/anon69491625)
#### Post date: [July 3, 2022, 3:16pm UTC](https://discourse.julialang.org/t/anyone-used-stipple-jl-with-zmq/83706/1 "2022-07-03T15:16:32Z")

</div>

I just found out about Stipple.jl. I “WAS” going to use Dash but happy to join in the fun… In Dash I set up the data like this

```julia
function build_dash()

app = dash()

app.layout = html_div() do
             html_h1("tontine2"),
             dash_datatable( id="table", columns=[Dict("name" =>i, "id" => i) for i in names(df_dash_table)],
             data = Dict.(pairs.(eachrow(df_dash_table))),
                          editable=false,
                          filter_action="native",
                          sort_action="native",
                          sort_mode="multi",
                          row_selectable="multi",
                          row_deletable=false,
                          selected_rows=[],
                     ## page_action="native",
                     ## page_current= 0,
                     ## page_size= 10,
 
                           )#end dash_datatable 
end

```

so I can hide/sort/add selection criteria on a column by column basis. So I’ll be looking into ( next week) how to do this in Stipple.jl.

**I do have a question. I hit a bit of a hiccup in Dash as ( using the default) used the same TCP port as ZMQ. Have you tried Stipple with ZMQ?**

in my usecase I have a dataframe which is updated every second by an IPM via ZMQ and that’s what I hook the column selection to. I’m pretty sure I can see how to do the same in Stipple but I’d like to check that I’m not doing anything silly.  
thanks for all your hard work  
theakson
