All Questions
3,583 questions
1
vote
0
answers
44
views
How can I fix the slot ng-repeat so it will display the areas for the selected block?
I am trying to display the areas for the selected block, the wizardStep is the parent controller and the optionSelector is the child controller. I am sending the selected name and value of the ...
0
votes
0
answers
54
views
ng-repeat disable other repeated HTML Attribute
I am using "ng-repeat" to display 3 elements => Radio buttons- Yes/No, "Save" & "Cancel" buttons.
Objective of this question is to Enable only 1 HTML Attribute at ...
1
vote
1
answer
48
views
In angular, ng-repeat breaks the options into options again
My js array is ["standard", "premium"]
When I click on the dropdown option for the first time, it’s showing option as standard and premium. After choosing any one of them the ...
0
votes
2
answers
61
views
Javascript do-while loop condition causing error
I am running an older version of Ionic v1 which is no longer supported. It appears I have discovered a bug that is not covered anywhere. The only two mentions of it are 1) related to collection-...
0
votes
0
answers
48
views
ng-repeat going into infinite loop on array of objects
I have an HTML block that is accessing values using ng-repeat in an object array 'items' of type:
[{
method: 0,
text: 'text1'
},
{
method: 1,
text: 'text2'
},
{
method: 3,
text:...
1
vote
0
answers
94
views
How I suppose to break 10 k records in ng-repeat in HTML table?
I want to show records of 10k in an HTML table using ng-repeat, but when ng-repeat runs, it crashes the browser every time. I need solutions so I can fix it.
I am looking for a solution so I can fix ...
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 ...
0
votes
1
answer
56
views
AngularJS : table rowspan dynamic
I would like to know how can I display a table with ng-repeat from AngularJS like this:
4 columns after a row with a colspan of 4 and so on.
My code angular return database from data html
<table&...
0
votes
1
answer
398
views
angularjs ng-repeat radio buttons
This code makes 2 sets of 3 radio buttons. One set of individual radio buttons and one set of radio buttons constructed with an ng-repeat. Both sets of radio buttons can be selected with the buttons A-...
0
votes
1
answer
71
views
Create multiple divs using ng-repeat
I want to create 'n' red blocks with text (n here means the number of elements in array). But, I am getting a blank page.
<html>
<body>
<script src="https://ajax.googleapis....
1
vote
1
answer
165
views
ng-repeat nested array of object in same row
I am trying to bind the data in the same row in a nested array.
My Array of Objects
$scope.Record = [
{ Name:'Adam',
Months:[
{Month: 'Jan', Value: 10, cust:2},
{Month: 'Feb', Value: 30, cust:2}
{...
0
votes
0
answers
36
views
ng-repeat do not work on arrays of length > 23 [duplicate]
Hello StackOverflow people !
TLDR; Fixed, my array was containing duped elements. On my way to clean this array !
Thanks
@Igor for the light !
I'm currently working on a relic of the past : Angular JS ...
0
votes
0
answers
38
views
Access nested json with ng-repeat to build a table
I'd like to build a table that looks like that :
I tried something in my dataset, but as datas are nested, I don't have any idea how I can display them with ng-repeat in my html.
wslists can is ...
0
votes
0
answers
95
views
How to access nested json with ng-repeat to build a table
I'd like to build a table that looks like that : table
I tried something in my dataset, but as datas are nested, I don't have any idea how I can display them with ng-repeat in my html.
Also resultsJ1,...
0
votes
2
answers
693
views
List of data with buttons that should display the rest of the data below
I'm trying to create a list of data, with a corresponding button in each row of the list. I am hoping to make it so that when a user clicks the button, it shows the data below, (using ng-show) just ...