All Questions
Tagged with angularjs-scope angularjs-ng-repeat
1,059 questions
0
votes
1
answer
54
views
different image url each profile (ng-repeat)(ng-src)
I want a different image url each person profile everytime they’re profile details appeared.
But what happen is it’s only targeted the last url on $scope.imgSrc so they have all same pics which is I ...
1
vote
0
answers
79
views
ng-isolate-scope in each child directive along with ng-repeat in AngularJS
The HTML template contains the nested directives. The child directive will create the element or fields based on the data injected to it. So field can be type of dropdown, input field etc. I suspect ...
0
votes
1
answer
89
views
show more in AngularJS dropdown
I have a select Dropdown created using AngularJS. We have set a limit to show the top 5 items and the remaining 5 items should be visible to the user . when he clicks the 5th item with the name "...
2
votes
0
answers
257
views
Rendering AngularJS code inside React component
Is it possible to render AngularJS component inside React component which is rendered from an AngularJS component.
I have a specific scenario where:
<angularjs-component-1>
<react-...
0
votes
1
answer
42
views
Filter and show results from other pages
I have a HTML page with a textbox and table to display data
<input id="search-term" type="search" placeholder="Search..." ng-model="vm.term.search" ...
0
votes
1
answer
660
views
how to disable radio button dynamically in angularjs using ng-repeat
I have developing some code in Angular JS and i need to disable radio button based on previous selection or change in text box
in JS controller:
PPCO.cusGender = [ {
id : '1',
key : 'Male',
value : '...
1
vote
1
answer
132
views
how to get html dropdown selected value in ng-repeat div angularjs
On button click need to get the dropdown values of each row dont know where the issue is not success in retrieving,the controller goes here,
$scope.values = [];
$scope.Benifit = [{ 'BenefitType': ""...
2
votes
2
answers
188
views
Display a $scope variable using another $scope variable
Display a scope variable which is similar to ng-repeat element in Angularjs
These are my scope variables
$scope.published = true;
$scope.count = 3;
I also have an array called labels
$scope.labels = [...
0
votes
1
answer
121
views
ng-repeat is not working to refresh the display results based on filter search
// My ng-repeat is displaying the results fine, but after typing in the search box it is not filtering results as per search. please help. Also, I'm getting data from http.get
// I'm new to angular ...
1
vote
2
answers
37
views
Show different UI elements using Angularjs 1.7.x ng-repeat (key, val) in nested array
I'm very new to angularjs and I am trying to figure out ng-repeat with key/value pair. I have attached the following image with the expected result. Here's the code I'm trying but the result I am ...
0
votes
2
answers
480
views
AngularJS Directive two way binding in isolated scope not reflecting in parent scope
I am trying to pass a scope array element to a directive and changing the value of that element inside the directive but when I print the values of the scope element the changes that made inside the ...
1
vote
1
answer
37
views
AngularJS function inside curly binding triggers for each click
I have a use case where I have to bind value to column in table by triggering a call to function which returns username. The table rows is looped using ng-repeat-start and pagination is used to ...
0
votes
1
answer
100
views
How to get app version using AngularJs and ionic 2?
I want to show app version using old AngularJs version 1.5.3 and Ionic version 2.2.1. how to show the app version?
Example:
<manifest android:hardwareAccelerated="true" android:versionCode="...
0
votes
0
answers
41
views
can element using ng-repeat access variable created by ng-repeat?
is this valid for ng-repeat in angularjs 1.7.x
<div
ng-repeat="item in items"
ng-class="item.id">
{{tab.label}}
</div>
I am confused with the usage of variable created by ng-...
3
votes
0
answers
370
views
Changes in scope variable not updating DOM
I came across this angularJs issue where a change in an array is not updating the DOM, even though there is a binding in place.
I have tried everything from using $scope.$apply, $scope.$evalAsync and ...