Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Hello Team,
I have a scenario where i need to get the property value where Thing name and property name is dynamic.
var dynThingName = "Thing1";
var dynPropName = "prop1";
result = Things[dynThingName ].dynPropName ;
Failed to get the value, dynPropName is not getting value bcoz it searches for dynPropName which is not defined.
I have used GetNamedPropertyValues but for a single property value i need to create a infotable as input parameter.
Any other ways to get the value in a simple way.
Thanks
Sunay
Solved! Go to Solution.
Should be with [] --> Things[dynThingName][dynPropName]
You should be able to get it with
Things[dynThingName](dynThingProperty) or perhaps both are ( )
Hello Chung,
Tried putting ( ) across the dynamic property, but i am still get the error.
Thanks
Sunay
Should be with [] --> Things[dynThingName][dynPropName]
Thanks Carles. It works