Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
I would like to call service of a `ThingTemplate` on the concrete thing.
I grab all `things` to grid with service `GetImplementingThings`.
Could you suggest me algorithm how can I call 'SomeConcreteMethod' on selected thing from grid?
Thanks in advance!
If you are asking how to create a service to get children of concrete thing's template, use a script below in your service.
// template: INFOTABLE dataShape: "EntityList"
var template = me.GetThingTemplate();
// result: INFOTABLE dataShape: RootEntityList
var result = ThingTemplates[template.name].GetImplementingThings();