Skip to main content
14-Alexandrite
June 14, 2018
Solved

How to get Studio ID of a widget?

  • June 14, 2018
  • 1 reply
  • 1513 views

Hello,

 I am trying to create a universal function which return name of a widget where is called:

Screen_250.bmp

 

 

 

 

 

 

Can be used for this example a keyword this ?

       $scope.getWidgetName = function (){
                 return this.view.wdg.studioID;     //something like this
       }

 

Thank you for answer.

 

Tomas

Best answer by Giuseppe_Fiore

Hi, tcharvat

This is the way to extract the  Studio Id of a widget .

 

 

 $scope.getWidgetName = function ()  { 
             var StudioId=this["widgetId"];
               console.log(StudioId);

       }

 

i hope i was helpful...

 

 
 
by 
Giuseppe
 

1 reply

15-Moonstone
June 14, 2018

Hi, tcharvat

This is the way to extract the  Studio Id of a widget .

 

 

 $scope.getWidgetName = function ()  { 
             var StudioId=this["widgetId"];
               console.log(StudioId);

       }

 

i hope i was helpful...

 

 
 
by 
Giuseppe