Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
hi,
i am a new user of thingworx studio, i am trying to let a 3d-label showing text from different thing's property in thingworx when different button click. is there any way to do it?
thanks for helping.
Solved! Go to Solution.
@friend0165 You can write JavaScript function code in <View>.js and call it on different press of button click event.
svc (ThingWorx service) InfoTable result set can be referenced in Javascript. The svc (ThingWorx service) InfoTable result set can be Bound to a Widget for quick loading. Load service and Bind “All Items” to Widget.
Sample code:
//Get Result set attribute “Name” for currently selected data
$scope.app.mdl['MyThing'].svc['GetThingWorxServiceData'].data.current['Name']
GetThingWorxServiceData is the ThingWorx Service and Name is the property
-Durgesh
@friend0165 You can write JavaScript function code in <View>.js and call it on different press of button click event.
svc (ThingWorx service) InfoTable result set can be referenced in Javascript. The svc (ThingWorx service) InfoTable result set can be Bound to a Widget for quick loading. Load service and Bind “All Items” to Widget.
Sample code:
//Get Result set attribute “Name” for currently selected data
$scope.app.mdl['MyThing'].svc['GetThingWorxServiceData'].data.current['Name']
GetThingWorxServiceData is the ThingWorx Service and Name is the property
-Durgesh