I would like to filter the InfoTable returned by a SQL query using a ChipBasedFilter widget and return it directly to an Advanced Grid.
Is there a way to achieve this without creating an intermediate service? I have several mashups with very different requirements and would rather not write a separate service for each one.
Thingworx V9.2
Solved! Go to Solution.
Hello,
You can call Resources["InfoTableFunctions"].Query() directly from your mashup, no need to wrap it in a custom service.
/ Constantine
Is there a more detailed description for this? I've never executed such calls directly from the MashUp before.
Here, I threw together a quick example -- take a look at the attached file:
Basically, it works. However, it doesn't recognize the underlying DataShape. This could be because the service that returns the data is SQL-based.
I did it with a wraped Service now
Thanks for your help.