Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
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?
Solved! Go to Solution.
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);
}
------------
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);
}
------------
Thanks Dmitry! it worked.