0
votes
4answers
955 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 ...
2
votes
1answer
57 views

Tabset $rootScope scope not updating

I've a screen in below structure. UserExperienceScreen <tabset> tab 1 - <controller> <form> - input fields - form submit - go to tab2 tab 2 - ...
2
votes
1answer
808 views

Date picker is not working in AngularJS (ng-grid) “editableCellTemplate”

columnDefs: [{ displayName: 'Date', field: 'date', editableCellTemplate: '<input type="text" ng-class="\'colt\' + col.index" ...
2
votes
3answers
118 views

How to call controller function from directive?

how to call controller function from directive? or howto access directive ng-model from controller? eg. I use angular ui bootstrap time component and when time change I need to notify calling function ...
2
votes
2answers
76 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.
0
votes
1answer
7k 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 ...