0
votes
1answer
31 views

pagination does'nt get updated on search

Html Code: This is the html code that basically showas a table with search filter. . . <input type="search" ng-model="search.$" /> <table class="table table-striped table-bordered"> ...
0
votes
2answers
43 views

Angular search filter doesnt search in entire table

This is my html code: <input type="text" placeholder="Search By Any..." ng-model="search.$"/> <table dir="ltr" width="477" border="1" class="table table-striped ...
0
votes
0answers
63 views

Angular JS complex Table form creation

I need some expert hands in this problem. I want to create a dynamic table where user can add rows and columns. this is the desired end output: I already managed to add floors both in quick way ...
0
votes
2answers
30 views

Adding new form inputs continuously

I currently have a form where an individual can add firstname and lastname via two input fields. In some scenarios they may want to add more than one so I want to provide button/bit of text below ...
2
votes
3answers
235 views

Angular JS Date format inside Ng-Repeat

Actual Date coming from JSON Need to format it as below . Effective Date : 2010-08-31 (trim the time stamp) End Date : 2010-08-31 (trim the time stamp) Am using the below code for Formatting the ...
0
votes
0answers
21 views

Angular JS $http service within a directive

I am trying to create a implementation of the Facebook popover for my application.I have come across a directive for creating dynamic popovers.I want my application users to be able to hover over ...
0
votes
1answer
161 views

angularjs bootstrap ng-repeat not working inside tab

I am trying to build a tab using angularjs ui-bootstrap.Got the tab working. Below the tab, have content displayed using ng-repeat. In one of the tabs, wanted to do search on the listed contents in ...
0
votes
2answers
47 views

Pagination gets “stuck”?

I have a simple table application that displays dummy data with columns like name, number, date, etc. You can sort it by columns, and it is paginated. However, when I use the pagination, some of the ...
1
vote
0answers
121 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
121 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
59 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
318 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
46 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']; ...
1
vote
2answers
563 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 ...
-1
votes
1answer
1k 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
79 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. ...
0
votes
2answers
78 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 ...
0
votes
1answer
60 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
87 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
955 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
110 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
282 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
588 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 ...
1
vote
1answer
1k 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" ...