How to add a query to a paginated grid advanced widget
I followed the instructions in the link below to add pagination to grid advanced. It works.
https://www.ptc.com/en/support/article/CS311123
I typically add the following code to add query to grid advanced.
if (query) {
result = Resources["InfoTableFunctions"].Query({
t: result /* INFOTABLE */ ,
query: query /* QUERY */
});
}
For the paginated grid advanced, I tried the code below to match the output infotable, but it's not working. Is there a way to add query to a paginated grid advanced?
if (query) {
result = Resources["InfoTableFunctions"].Query({
t: result.Data /* INFOTABLE */ ,
query: query /* QUERY */
});
}


