AngularJS is an open-source JavaScript framework.
0
votes
2answers
33 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
133 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
689 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
317 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
37 views
AngularJS tabset does not show the correct state when the page is reloaded
I'm using angular-ui-router in an AngularJS SPA along with the bootstrap tabset directive.
Here is my example http://plnkr.co/V0Cs6BfnggXshawMv4LX and the steps to reproduce the problem.
Launch ...
0
votes
1answer
869 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
163 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
33 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
108 views
Update of array in typeahead angularjs
I keep getting that type error on my text input field. whenever I do
angular.bootstrap(document,['modulename']);
this is how my input field looks like
<input type="text" autocomplete="off" ...
0
votes
0answers
370 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
506 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 ...