cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X

Pass Text Input widget value to a function in Thingworx Studio

qumar
1-Newbie

Pass Text Input widget value to a function in Thingworx Studio

Hi ,

   i have text input widget and a button.I want to invoke a function getName() on the button click at the same time  i want to pass the textbox value to this function.How can i do it?

1 ACCEPTED SOLUTION

Accepted Solutions

Are you looking for something like this (check the video and code below):

-----------

$scope.getData = function() {

  var inText = $scope.app.view['Home'].wdg['textInput-1'].text;

  $scope.outputData(inText);

};

$scope.outputData = function(inText){

  console.log('inText is ', inText);

}

------------

Video Link : 1824

View solution in original post

2 REPLIES 2

Are you looking for something like this (check the video and code below):

-----------

$scope.getData = function() {

  var inText = $scope.app.view['Home'].wdg['textInput-1'].text;

  $scope.outputData(inText);

};

$scope.outputData = function(inText){

  console.log('inText is ', inText);

}

------------

Video Link : 1824

Thanks Dmitry! it worked.

Top Tags