Tagged Questions
0
votes
0answers
18 views
slide toggle from left to right in angular js
I am using hide and show an element using the angular JS . Angular toggle collapse working fine from slide up and slide down. How can I do the same thing sliding from right to left with some ...
0
votes
4answers
43 views
apply css on ng-click dynamically angularjs
I have an Object like this
var obj = [
{
'id':1,
'color':'#ff0000',
'name':'final'
},
{
'id':2,
...
0
votes
2answers
49 views
Angular - Unable to load view
I'm trying to get my head around how to load a view into a dynamic template on page load. My application has different templates based on device width. Currently the template is loaded without issue ...
0
votes
1answer
156 views
First item in Angular JS repeater not CSS :first-child
I have a series of divs in a project, in which the first one needs to be different from the others.
So I set up my css to be item:first-child{} as usual.
In some cases, these divs might be generated ...
0
votes
0answers
43 views
How to render a custom {{element}} from an ng-repeated list
Trying to get angular to render a list of directives after a drop-down is toggled in bootstrap.
Ideally, I'll $scope in the main view Ctrl:
$scope.directiveList = ['messages', 'events', 'cart'];
...
0
votes
2answers
162 views
Using Modal Window inside ng-repeat
I have a ng-repeat and I am trying to add a modal that passes the same scope variable to the modal window. I am able to get the modal window to open but the scope value from ng-repeat is not showing ...
0
votes
1answer
319 views
AngularJS controller, required by directive, can't be found (solved)
I have an error for each "message"
Error: [$compile:ctreq] Controller 'accordion', required by directive 'accordionGroup', can't be found!
with my code in html
<h2 ...
0
votes
1answer
47 views
Capture Posted Data from other website to AngularJs
I want to prepare secure application in AngularJs, which handle payment related common website(means we can get request from multiple website for payment in secure website).
Now issue I am facing.
...
1
vote
1answer
45 views
datepicker not visible in mean stack example
I am a newbie to the MEAN stack.So to start it off I use the help of this tutorial to build my first application
...
0
votes
2answers
68 views
Getting selected option in AngularJS
I am generating a thumbnail list of photos (using ng-repeat), and under each one of these photos I have two buttons, one to view more details and another to purchase.
I am finding a problem how to ...
1
vote
1answer
942 views
Collapse a list of ng-repeat
I'm attempting to use ui-bootstrap's collapse on an ng-repeat list of items. I've added ui.bootstrap to my module, and worked out this html:
<div class="title">Things <a class="collapse" ...
0
votes
1answer
52 views
Allow duplicating strings in Array [closed]
I've the following code in HTML:
<div class="col-sm-8">
<div class="row col-sm-12 pull-right paddingDiv">
<div class="col-sm-12">
<div ...
0
votes
1answer
55 views
Collapse not showing the list genereted with ng-repeat in Angular
I'm currently trying to build an app with angular.js and bootstrap ui and I'm stacked with a collapse navigation.
The problem is that I have a ng-repeat that should work but when I click the nav-bar ...
2
votes
2answers
195 views
A directive to format phone number
I was wondering how to automatically format a number in an input field using an angularjs directive? When I type in an input field say 6042919283 I want it to be shown as 604-291-9283.
Thanks
1
vote
1answer
94 views
how to show accordion-group based on items in array
I want to show an accordion-group of angular-ui only if an array contains items. this can be changed dynamically.
I tried to use ng-show but since the array starts without items it is not displaying ...
1
vote
3answers
258 views
Two way data binding in Angular with POST request from modal
Hello all,
I have an issue with data binding. I am using the angulat boostrap modal to send a post request to a Laravel API and I am receiving the proper information. I am pushing the result in an ...
0
votes
2answers
433 views
trying to use angular-ui-bootstrap radiobutton directive with ng-repeat in an angular project
So... I'm trying to generate a radiobutton group using ng-repeat:
<div class="btn-group yb-radiobuttons">
<button type="button" class="btn" ng-model="radioModel" btn-radio="'all'">All ...