9,058 questions
1
vote
1
answer
55
views
Custom widget for visualizing dynamic table data
While creating a custom widget for visualizing dynamic table data, I encountered some issues and would like to share a minimal working example to illustrate the problem.
JS:
self.ctx.$scope.showAlert =...
1
vote
0
answers
64
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
69
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
69
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
1
answer
34
views
Set background color of table column with AngularJS
I would like to set the background color of a table column with AngularJS.
I found an example without AngularJS:
$('td').hover(function() {
var t = parseInt($(this).index()) + 1;
$('td:nth-...
0
votes
0
answers
38
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 ...
1
vote
1
answer
66
views
In AngularJS, ng-repeat breaks the options into options again
My red 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 ...
1
vote
1
answer
65
views
AngularJS (1.5.0) nested ng-repeat with radio button not initializing checked properly
I use a dynamic name attribute technique.
I'm using AngularJS verison 1.5.0.
When I run this AngularJS example (code below), which has nested ng-repeats (so I use $index and $parent.$index), I expect ...
0
votes
2
answers
66
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
50
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:...
0
votes
1
answer
42
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 ...
1
vote
0
answers
101
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
61
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
61
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&...
-1
votes
1
answer
26
views
how to filter table data using angularJS filter from a selection value
I have a table with a column of Status, and I want to filter the table base on their status and I have put on the selection element to do so. here is my code below for the selection
<select class=&...