All Questions
Tagged with angularjs-ng-repeat not angularjs
230 questions
1
vote
1
answer
83
views
Hide a div generated dynamically via SCSS
I am working on hiding certain elements of an Angular page. I cannot change the source code, however I am able to upload an SCSS stylesheet which is applied to the page. The page I am working on has 2 ...
0
votes
0
answers
40
views
Why is ng-repeat not processed
I have been following some user guides / introduction videos, and am struggling to merge a couple of very basic concepts. I have trying to populate a SELECT using the ng-options but it seems its ...
0
votes
1
answer
43
views
How to have multiple rows in a ng-repeat
I have an AngularJS app.
I have a page where I am displaying a table of information for the user to edit.
However, there are too many columns going across the page. I would like to move 1 or more ...
0
votes
0
answers
98
views
Display issue : put different lists in different columns of a table with ng-repeat
UP
I have 2 different lists of elements in my JS that I would like to display in a table, each list in a column with ng-repeat. The problem is that my elements from the second list appear in both ...
0
votes
1
answer
567
views
Angular display table data from object array but updating last column from another API call returns undefined value
I am trying to display a table by looping an array of objects fetched from backend API.
<tr *ngFor="let obj of objarray">
<td>{{obj.property1}}</td>
&...
0
votes
2
answers
84
views
NG-repeat display the value only once in td
I have this table with ng-repeat. All I want is to display one the value only once inside the ng-repeat.
My ng-repeat in tr
<tr ng-repeat="xx in results " >
<tr>{{xx.id}}&...
0
votes
0
answers
39
views
sort elements using bootstrap and ng repeat in angular js
I am trying to sort my data in angularjs using ng repeat in a way where all data start filling the first column and if there are more it goes to the second.(Like form A)
Like this:
form A ...
0
votes
0
answers
143
views
Matrix table linked to Components in Angular
I am looking to create a matrix table in Angular, based on some sql tables.
I have 3 tables and related components retrieving their data: Member, Issue, and Skill level (linked to the 2 others).
One ...
0
votes
1
answer
84
views
HMTL audio with Angular JS and Material grid list not updating audio elements when visual elements update
I made a grid list in AngularJS Material. The grid list is generated from a JSON file using ng-repeat. Each tile has unique visual elements and when you click a tile it plays a unique audio file. ...
0
votes
1
answer
548
views
Angular: How to update DB with changes from input fields inside ng-repeat
I'm making a small Angular page for a personal project (a tournament). I use an Oracle DB where I store all the matches. With PHP I'm able to make a request to that DB and to receive all that matches ...
0
votes
1
answer
534
views
Form Validation with font awesome icons inside ng-repeat
Good Afternoon,
I'm having a problem trying to get my font awesome icons to work as expected, I have a shopping cart where hardware can be ordered, an address field is provided for each item so the ...
2
votes
0
answers
203
views
I am trying to display data in following format?
I have a json like below structure which i want to reduce to the table. All the ID should be in table header and version and corresponding status in the table columns.
[
{
"Version": "989.999",
...
0
votes
1
answer
26
views
Angular JS conversion to Angular with ngFor interpolation
I am working on converting an Angular JS application into Angular, and I'm stuck on one spot. I have an old ng-repeat loop with interpolation in the html that worked in JS but no longer. It is meant ...
1
vote
1
answer
39
views
How to pass jQuery ng-repeat {{x.something}} to javascript api url like /api/get_now/{{x.something}}
How to pass jQuery ng-repeat {{x.something}} to javascript URL ?
$(document).ready(function () {
let address = '<?=ROOT_ADDRESS?>/api/get_now/{{x.something}}';
$.ajax({
...
0
votes
1
answer
52
views
Skip duplicated items while ng-repeat
There is a nested array which consist of bundles and those bundles in turn have items. So, I want to skip identical item(s) of the next bundle based on previous bundle items while iterating. Below is ...