Accessing filtered data
Accessing filtered data
easynow
Posts: 7Questions: 4Answers: 0
Is it possible to access the data after it has been subset by the search filter, ideally as JSON or something similar so that the filtered subset of data can be used as an input for something else?
This question has an accepted answers - jump to answer
Answers
You can use a
selector-modifier
with therows().data()
to get the rows you want. See the search examples for details.If needed you can use
toArray()
to convert the returned API instance of rows to a Javascript object.Kevin
Hi Kevin,
Thanks again that's exactly what I was looking for.