angularjs - Angular ui click not working -


i try use angular-ui in app, cant resolve 1 small problem. example, try use accordeon. works on clean page on plunker, in real app not working click event. include in module

    angular.module('modulename', ['ui.bootstrap', 'myfilters', 'my1services', 'my2services']) 

my includes

 <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.5/angular.js"></script>  <script src="http://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.5.0.js"></script>  <script src="js/app.js"></script>  <script src="js/services.js"></script>  <script src="js/controllers.js"></script>  <script src="js/filters.js"></script>  <script src="js/directives.js"></script> <script src="lib/angular/angular-resource.js"></script> 

i try click on header

<accordion-group heading="static header">             content straight in template. </accordion-group> 

but nothing happen. code below must open click on header

<accordion-group heading="{{group.title}}" ng-repeat="group in groups">             {{group.content}} </accordion-group> 

why click not working? thanks

the problem in styles: standart bootstrap styles 3.0 not working combined styles 2.3. example:

<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet"> <link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet"> 

Comments

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -