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?

brando899brando899 Posts: 4Questions: 2Answers: 0
edited December 2018 in Free community support

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?

Answers

  • kthorngrenkthorngren Posts: 21,303Questions: 26Answers: 4,947

    You could use the filter() and toArray() API's to get the data, based on the search criteria, from one table. Then use rows.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

This discussion has been closed.