AngularJS is an open-source JavaScript framework.

learn more… | top users | synonyms

0
votes
2answers
192 views

How to initialize controller manually after app has bootstrapped?

I trying to add angular widgets into an existing non-angular app. The problem is that these widgets are not added by Angular, and are mostly injected into the DOM by a non-angular script. The first ...
0
votes
2answers
223 views

AngularJS and ui-sortable(branch 1.2): ng-mouseover breaks after sorting

I upgraded my App to AngularJS 1.2 and so also switched to ui-sortable v 1.2. The sorting is implemented for Accordion-Groups (from ui-bootstrap). With the master-tree version of sortable i could ...
0
votes
2answers
1k views

How to connect my controller in my directive for inserting data and adding bootstrap select in angular.js?

I'm trying to add data on my select menu using a controller and used ng-options while i have a class defined in my directive to insert the bootstrap-select plugin to the element. The problem is that ...
1
vote
1answer
457 views

How to make a tab active from the beginning in Angular Bootstrap UI?

I'm trying to make one of the tabs active (tabs are already in the template), depending on some url params. Unfortunately, it always make active by default the first one found in the html template, ...
0
votes
1answer
25 views

Date not being formatted when copied from one datepicker field to another

I've recently migrated from Angular 1.2.5 to the most recent version, 1.3-rc.3, and from ui-bootstrap 0.7.0 to ui-bootstrap 0.11.2, and some functionality in my code breaks. I have two datepickers on ...
0
votes
1answer
968 views

Angular Bootstrap: How to show a popover based on a child elements' trigger?

Demo Fiddle I'd like to show some help text using a popover for the entire group of fields, not for each individual input. In the fiddle, I'm simply using a mouseenter trigger to show how it should ...
1
vote
0answers
287 views

AngularJs bootstrap $modal.open() working only first time

I am using http://angular-ui.github.io/bootstrap/ (version .10). I need to open a simple modal window on event click of full-calendar (http://arshaw.com/fullcalendar/). I do that using select: ...
0
votes
0answers
35 views

search using a search bar by a button click in typeahead?

Here is my Form.. div.form(name='customerFrm') label.fa.fa-search.search-icon(data-ng-click= "customer(obj._id)", typeahead-match) input.form-control.search(type='text', ng-model='selected', ...
0
votes
0answers
46 views

fetching the selected dropdown value in AngularJs

I have a dropdown menu which I coded using Bootstrap and I populate the data form the scope. How do I fetch the selected value from the controller whenever there is a change in the dropdown field. ...
0
votes
0answers
53 views

ng bind html contents with inline width

I was using the bootstrap directives for angular http://angular-ui.github.io/bootstrap/ and I basically had a modal for which the body content is given by <div class="modal-body"> <div ...
0
votes
0answers
68 views

How to replace content of modal window without closing it?

I have a requirement to open modal window and then based on the configuration of the steps, swap views in the modal window, kinda like wizard but more dynamic. These views are separate html pages with ...
0
votes
0answers
452 views

List filtering not working in AngularJS when bound to a slider with pagination

I have an ASP.NET MVC site with AngularJS on the Views and I need to do filtering on a list based on certain controls using AngularJS. Here are the controls: An input textbox acting as a search but ...
0
votes
0answers
722 views

Angular.js defer AppCtrl and any routing

I would like to delay the initialization of the AppCtrl and any route change until the "app settings" have arrived from the server. I'm using the AngularJS-boilerplate which is including ui-route and ...