Is it possible to pull search results into a table on the current page from a different table page?
Is it possible to pull search results into a table on the current page from a different table page?
brando899
Posts: 4Questions: 2Answers: 0
1 Search Bar and 1 Table on 1 Page, That Can Not Only Show Results from the table on the page you're currently on, but from a table on a different page, or different pages?
This discussion has been closed.
Answers
You could use the
filter()
andtoArray()
API's to get the data, based on the search criteria, from one table. Then userows.add()
to add that data to another table. This would work for tables on the same page.I'm not familiar with any options to fetch data from one HTML page to another. If you are using ajax data sources you could send an ajax query (using the data parameter with the filter) to the server to fetch the desired rows.
Not sure any of this helps. If not please provide more details of how you want to retrieve the data from the other pages.
Kevin