0
votes
2answers
66 views

How to dynamically disable ui-sortable directive in angular-ui

I am using angular-ui for sortable using ui-sortable directive. Is it possible to dynamically enable/disable sortable functionality based on the scope state? So I need to have a button which changes ...
1
vote
1answer
120 views

Angular: How to click on modal button when user hits Enter?

I have several Angular UI Modals. Every modal has a Cancel button and an "Action" button (which can be Create, Delete, etc). I use the ui-keyup directive from Angular UI to identify when user pressed ...
0
votes
1answer
30 views

Using FullCalendar methods with AngularUI wrapper

I'm trying to integrate AngularUI's calendar wrapper into my application, and the calendar initialization works fine. However, I don't see how I can call calendar methods from here. Here's my ...
0
votes
1answer
27 views

Use full screen modal on route change

I want to implement a full page modal that overlays immediately upon another page when a route is triggered. How can I accomplish this on AngularJS? I use Angular-UI's modal directive to open modals, ...
0
votes
1answer
273 views

angular-ui IE8 accordion

Using the Angular-UI bootstrap accordion in IE8 the tabs do not expand. Here is the error I am receiving using IE 8's F12 Error: Unexpected call to method or property access.undefined Error: No ...
-3
votes
1answer
352 views

Dynamic Carousel Angular

I am getting an array from the backend, and I want to display it as a carousel using angular. The component must be responsive. Every slide will contain multiple items. Any idea on how I can ...
0
votes
0answers
62 views

Angularjs UI ui-map does not work for IE8

ui-maps does not load the map in IE8. I'm able to see the map in chrome but it does not work for IE8. Even visiting the link (http://angular-ui.github.io/) with IE8 you can notice that the directive ...
0
votes
0answers
204 views

Angular UI select2 directive - updating the model programmatically not reflected on the widget

I'm trying to update select2 model programmatically and for the view to refresh but it doesn't seem to work. Here's a sample plunker forked from the Angular UI project: ...
0
votes
0answers
73 views

angular-ui bootstrap render component at the response server

I made a java service that response html data, like this: <span tooltip-popup-delay='1000' tooltip='appears with delay'> {{ variable.fecha | date: 'yy-MM-dd'}}</span> to request it ...