Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
53 views

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 =...
OmnivoreRecycling's user avatar
0 votes
0 answers
69 views

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 ...
Pururava's user avatar
0 votes
1 answer
31 views

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-...
quma's user avatar
  • 5,787
1 vote
1 answer
62 views

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 ...
SR3599's user avatar
  • 15
0 votes
2 answers
66 views

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-...
rolinger's user avatar
  • 3,196
0 votes
1 answer
36 views

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 ...
Jerry's user avatar
  • 6,597
0 votes
1 answer
61 views

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 ...
Hilario Abe's user avatar
-1 votes
1 answer
24 views

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=&...
Bennie Glarilso's user avatar
0 votes
2 answers
238 views

I have 14.2 angular and I need to reuse components from angular in the legacy project in angular js (1.8.3) using web components. I have two examples: https://stackblitz.com/edit/angularjs-with-...
Mykola Novytskyi's user avatar
0 votes
1 answer
93 views

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 "...
user2918673's user avatar
0 votes
1 answer
407 views

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-...
notangularjsexpert's user avatar
0 votes
1 answer
43 views

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" ...
Computer's user avatar
  • 2,247
0 votes
1 answer
71 views

HTML (in my AngularJS page): <input id="search-term" type="search" placeholder="Search..." ng-model="vm.term.search" autocomplete="off" no-dirty-...
Computer's user avatar
  • 2,247
0 votes
1 answer
758 views

I am creating options with an ng-repeat and on ng-change I would like to call a controller function and pass the option value and label. I have tried to also create the options using ng-options but ...
Ryan Litwiller's user avatar
0 votes
2 answers
125 views

I'm trying to make a get request and display the json data. Here is the html div tag where the data should be displayed: <div ng-app="app" ng-controller="searchController"> ...
yontu's user avatar
  • 37
1 vote
1 answer
186 views

I wanna disable the button with the checkbox in nested angularjs ng-repeat. I mean to Disable button in the current array of ng-repeat. My code looks like the below example, angular.module('test', ...
Malik Zahid's user avatar
1 vote
0 answers
128 views

I would like to get the data to be displayed as in below table. Can someone please provide me how to write in html using angular js object data. May be using ng-repeat-start but I couldnt understand ...
Sirisha Singampalli's user avatar
0 votes
0 answers
38 views

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 ...
Yona's user avatar
  • 11
0 votes
2 answers
703 views

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 ...
versb's user avatar
  • 103
0 votes
1 answer
684 views

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 : '...
sandeep's user avatar
  • 25
0 votes
0 answers
49 views

I am facing an issue while displaying the nested data inside the ng-repeat. I get data for the first 4 fields but those which are more nested like the label and onwards field data do not show up. the ...
Asiya Rehman's user avatar
0 votes
1 answer
567 views

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> &...
user2021's user avatar
0 votes
2 answers
84 views

I'm trying to setup hotkeys for an old project that still uses angular 1.x and one of the features I was trying to add would be to select the first row from a table that is created with an NG-REPEAT. ...
John's user avatar
  • 6,601
0 votes
1 answer
42 views

I'm displaying results by using NG-repeat. There is an API call via $http.post that receives an array with information. In the results there is a 'Thumbnail' item. part of the result is: "...
Jasper's user avatar
  • 135
0 votes
1 answer
2k views

I have a problem with show/hide column in a table with ng-repeat after checking a condition. Here is my code. <div class="row"> <div class="col-md-12 col-no-pad-mob"&...
Kushani5j's user avatar

1
2 3 4 5
182