The funeral service will be held at 10:30 AM on Monday, October 3, 2016 at the Fairbank Funeral Home, Fairbank. Rev. Daniel R. Schweikert will officiate. Burial will follow at the Fairbank Cemetery under the direction of the Fairbank Funeral Home.
A memorial fund has been established to assist friends and family.
See also
List of airports in Montana
References
External links
Fairbank Airport
Category:Airports in Montana
Category:Airports in Treasure County, MontanaQ:
angularjs scope value changed
i am trying to change the scope value from a function call but its not changed.
below is the code
function namechanger(userdata){
$scope.searchUser = userdata;
console.log($scope.searchUser.type);
//return $scope.searchUser.type;
//if($scope.searchUser.type == "1")
//{
// $scope.searchUser.type = 1;
//}else
// $scope.searchUser.type = 2;
//}
}
here when i am getting the value of the scope its showing undefined.
but when i am returning that it gives the proper value.
when i am trying to update the scope value, why it is not updated in the view.
thanks
A:
Ok so you have two way to do what you want :
1. change $scope.searchUser.type to $scope.searchUser.type = userdata.type
Related links:
Comments