Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X
Hello,
I'm using Thingworx 9.0 version ,I want to find specific entity in grid Advanced I have ticked EnableGridSearch property How do I search specific entity in grid advanced??please refer below attachment.
Thanks in advance
Solved! Go to Solution.
Hello @RM12,
The search functionality is related to the Filter event and Query property of the Advanced Grid.
Find the code snippet to be implemented in your custom service below:
var params = {
t: <your infotable> /* INFOTABLE */,
query: <the input query> /* QUERY */
};
// result: INFOTABLE
var result = Resources["InfoTableFunctions"].Query(params);
Regards,
Emmanuel
Thank you so much for your answer! It works
Hi @RM12.
Since you have resolved the issue, could you please mark the post from emscur as the Accepted Solution?
Thank you for participating in our community!
Regards.
--Sharon