GenieFramework / StippleUI.jl

StippleUI is a library of reactive UI elements for Stipple.jl.
MIT License
83 stars 15 forks source link

Support programmatic selection of Table rows #61

Closed hhaensel closed 1 year ago

hhaensel commented 2 years ago

Currently it is not possible to programatically select table rows.

I submitted a PR #60 to accomplish selection of table rows based on selection criteria. It's still work in progress...

selectrows!(model.table, model.selection, [1, 3, 10])
selectrows!(model.table, model.selection, "b", r"hello|World")
selectrows!(model, :table, :selection, "b", r"hello|World")
selectrows!(model, :table, "a", iseven) # assumes the existence of a field :table_selection
hhaensel commented 1 year ago

Closed with #60