Closed hhaensel closed 1 year 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
Closed with #60
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...