Tagged Questions
0
votes
1answer
23 views
$Scope in a nested Accoridon
I am using UI-Bootstrap with AngularJS and there is this simple Accordion Menu. I tryed to nest them. This works so far, but I can't get the scope of the nested.
ng-click also won't work, guess ...
1
vote
1answer
34 views
load modal using $http in angularjs
I want to load data in modal (ui.bootstrap.modal) with the help of angularJs.For Example i send request through post method and data retrieve successfully and now i want to load it into modal.Here is ...
0
votes
0answers
24 views
Update the UI from bootstrap modal
I've opened the modal using angular and bootstrap.js and its worling fine, but I want to update the UI after opening modal in bootstrap,
//need to add the header color OR update the ui
...
2
votes
3answers
71 views
Pass data to angular ui modal (lightbox effect)
Problem:
I want to create a modal lightbox using the Angular UI Bootstrap modal
Details:
I have built a photo grid using ng-repeat. Each repeated photo opens the modal using the open() method. I'm ...
1
vote
2answers
60 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
2
votes
2answers
33 views
Model in a modal window in angularjs is empty
Hello I am using angularjs ui bootstrap and I have one text field in a modal window, which when I try to print it in alert window it is empty. Any reasons why? Here is a plunker of the code.
-1
votes
0answers
149 views
Consuming a RESTful Web Service with AngularJS
I am having problems building an angularJS app using the following reference:
http://coder1.com/articles/consuming-rest-services-angularjs
I was able to set up the same app guided by the reference ...
1
vote
2answers
49 views
Set checkboxes as checked using angularjs
I have some checkboxes .their value in database are 'Y' or 'N' as enum.for making updation i have to review all the checkboxes.how to view checkboxes as checked.
this is code for checkboxes
<label ...
0
votes
4answers
193 views
angularjs share data config between controllers
I'm wondering what could be a good way to share directive
between controller.
I've got ie two directives to use in different controller
with different configuration the first think I thought of
using ...
0
votes
2answers
75 views
How to assign value to ng-model definition
I am using ui-bootstrap for typeahead in my application.
<input type="text" ng-model="newItem.id" class="form-control">
<pre>Model: {{customSelected | json}}</pre>
<input ...
0
votes
1answer
152 views
AngularJS UI Modal and select doesn't update the scope values
I am having a lot of trouble trying to save values from the modal component available in Angular UI.
Here is the page controller that calls the modal dialog
$scope.sourceSchema = [];
...
0
votes
1answer
171 views
Access controller method from AngularUI bootstrap modal popup
I am using the AngularUI bootstrap modal popup. I am loading an aspx file into the popup by using 'iframe'. Here is the code for my popup template:
<script type="text/ng-template" ...
0
votes
1answer
213 views
Angularjs ui modal windows with timepicker
I am trying to add a timepicker and a datepicker on a modal window and feels like the mytime model doesn't update. You can see it in the alert windows.
Can someone give me a hint. When I do a output ...
0
votes
0answers
630 views
Setting Model in AngularJS Control Not Updating View (something…)
I am experiencing issues with updating values in my AngularJS controller and having them properly reflecting in my model.
I have the following form in my view:
<form name="formSignIn" ...
0
votes
1answer
5k views
Angularjs custom directive child scope access parent scope method?
I am trying to create a carousel with AngularJS ans UI Bootstrap. Since the carousel in UI bootstrap only supports images, I wan to write my own directive to support youtube video.
I want the video ...