AngularUI is the enhancement companion suite to the AngularJS framework. It contains UI widgets and directives that are not part of the AngularJS core but are commonly needed in a project.

learn more… | top users | synonyms

0
votes
1answer
26 views

How can you hide a tab in Angular Boostrap UI using ng-show?

I'm trying to display a tab using angular bootstrap UI and ng-show. It simply doesn't work. <tabs ng-model="currentTab"> <pane heading="Triggers" active="panes['triggers'].active" ...
0
votes
0answers
24 views

Why doesn't cursor change to pointer/hand on Tabs, Pagination, Dropdown Toggle etc in angular-ui-bootstrap?

I have to add the following code: <style type="text/css">a {cursor:pointer;}</style> to make cursor change to pointer/hand on links for Tabs, Pagination, Dropdown Toggle etc.. in ...
0
votes
1answer
39 views

How do I create an AngularJS UI bootstrap popover with HTML content?

I want to create a bootstrap popover with a pre tag containing a prettified JSON object. The naive implementation, <span popover='<pre>{[ some_obj | json:" " ]}</pre>' ...
0
votes
0answers
48 views

angular wizard ng-view and angularui modal

I am building a wizard in angular using the angular-ui bootstrap modal component. In my main page, I am already using ng-views for navigation. The goal is to create a modal wizard on one of these ...
0
votes
0answers
20 views

AngularJS + ui.calendar duplicate calendars

please check ui.calendar plugin for AngularJS https://github.com/angular-ui/ui-calendar i downloaded source code and check it in browser. I see duplicate calendars. I need only one instance with ...
0
votes
1answer
27 views

Check if a input box is empty

How can I check if a given input control is empty? I know there is $pristine property on the field which tells that if a given field is empty initially but what if when someone fill the field and ...
0
votes
1answer
21 views

How to pass AngularUI Google Map object to a factory or request transformation?

I have a REST service that returns geo-coordinates that I'm consuming with a factory using $http in AngularJS. In order to display these coordinates as markers, I need to create google.maps.Marker ...
0
votes
1answer
25 views

Angular-UI run dropdownToggle from ng-click

Is there any way to run dropdownToggle from ng-click directive ? I am using it with ngMobile to avoid delayed click of "Actions" button on touch devices. <div class="btn-group"> <a ...
1
vote
1answer
32 views

ng-show directive not working properly

I am using ng-show directive to show/hide the alert box in my ui: <alert ng-show="{{showAlert()}}">{{showAlert()}}</alert> My controller code is: $scope.showAlert = function () { ...
0
votes
1answer
32 views

Enable angular-ui tooltip on custom events

I am trying to use angular-ui's tooltip functionality to show my user that a particular field is invalid but it seems that the tooltip can be shown only on some pre-defined triggers. Is there any way ...
0
votes
1answer
54 views

angular-ui bootstrap accordion: How do I properly $watch the is-open attribute?

I'm trying to perform an action when a specific accordion-section is openend. My use-case is almost identical to this question here, only I'm using statically defined 's instead of ng-each. Somehow I ...
0
votes
0answers
58 views

AngularJS jQuery File Upload Plugin Errors in a $Dialog Service Box

I am working on implementing the AngularJS code of the jquery file upload plugin found: http://blueimp.github.io/jQuery-File-Upload/ within a $dialog box using the $dialog bootstrap directive found: ...
0
votes
0answers
35 views

How do I set model according to chosen accordion group. UI Bootstrap

I'm working on accordion using Angularjs and this directive: http://angular-ui.github.io/bootstrap/#/accordion I have an accordion similar to this: <accordion close-others="true"> ...
1
vote
1answer
50 views

Closure-Compiler externs for AngularJS ui-router

Are there closure compiler externs available for AngularJS's ui-router? Is there an appropriate place to ask for these from the closure compiler (or Angular-ui) team?
0
votes
1answer
42 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
92 views

AngularJS creating additional scopes on opening modal dialog multiple times

I have a modal with angular-UI bootstrap. Because I've a dozen of different forms I want to show in the modal, I'm using a ng-include directive inside the modal. The src attribute is changing ...
0
votes
0answers
42 views

How to use AngularUI Dialog for lightbox

I have a partial page that shows a list of files on the server. I want to allow the user to choose a file and display it in a lightbox dialog using AngularUI. I can't figure out how to get the ...
0
votes
1answer
41 views

Access $locale in angular.module('xxx').value

I'm using angular-ui:s date directive (uiDate) and need to configure it. I can do that like this: app.value('ui.config', { date: { dateFormat: 'yy-mm-dd', // <-- I want to use ...
2
votes
3answers
359 views

angularjs ui-router - how to build master state which is global across app

<html ng-app="app"> <head> ... </head> <body> <div id="header"></div> <div id="notification"></div> <div id="container"></div> ...
0
votes
1answer
59 views

Capture “updater” action from AngularUI's Bootstrap Typeahead

How can I capture the "updater" event from AngularUI's UI Bootstrap directive? I've defined my HTML: <input type="text" pattern="[0-9]*" class="span6" placeholder="8675309" ng-model="empid" ...
0
votes
2answers
47 views

Using a Conditional Statement in AngularUI's Collapse Directive

Can I place a conditional statement into the collapse directive for AngularUI? I have the following setup, which has 3 radio-style buttons: <div class="controls controls-row"> <div ...
1
vote
2answers
130 views

Should I use RequireJS with AngularJS (and if so how to fix Angular UI dependency issue)?

Although this excellent article on building large Apps with AngularJS http://briantford.com/blog/huuuuuge-angular-apps.html states “I have never seen any instance where requireJS was beneficial in ...
0
votes
0answers
31 views

AngularJs and jQueryUi

I am using both the angularJs and jQueryUI. But only one of them is working at a time, it has a first come first serve basis. I am baiscaly using accordian function of jqueryUi, but it throws error ...
0
votes
2answers
50 views

AngularUi jQuery Passthrough - call method to get plugin value

I'm using AngularJS, AngularUI's jQuery passthrough uiJq and jQuery's noUiSlider plugin, but the question is really about accessing a method. The html portion correctly renders a slider, and I need to ...
0
votes
1answer
91 views

Large single page application with 'portal' or MDI like functionality using AngularJS

I have a question related to how to best compose a very large single page application using angularjs and if necessary ui-router. My scenario is this. I have multiple components which can be say ...
0
votes
0answers
50 views

Angular-ui modal without specific controller

Is it possible to use angular-ui modal without using a controller for specific for the modal Please see my attempt here http://plnkr.co/edit/UMjA5CV1jQGOChhDkbPQ?p=preview It opens, but never closes. ...
0
votes
2answers
156 views

ng-grid not working in IE8

I'm going nuts trying to figure out why ng-grid isn't working in IE8. I get this error: Expected identifier, string or number ng-grid-2.0.5.debug.js, line 1535 character 17. I'm copying an example ...
0
votes
1answer
115 views

Angular UI - Bind and unbind for keypress

I want to bind/unbind the keypress when user clicks to the checkbox. I tried to code a bit but not work at all without error in javascript console. HTML <textarea name="message" ...
0
votes
0answers
34 views

carousel previous doesn't work with angular

I'm new to Angular and Javascript. I'm trying to create a carousel. It looks correct and the next button works fine and it will scroll back to the first item as well. However, the prev button ...
0
votes
1answer
63 views

How to pass parameter in select2 ajax angularjs?

My Html code is <div class="control-group" ng-repeat="ty in transType"> <label class="control-label">{{ty.description}}</label> <div class="controls"> ...
0
votes
1answer
30 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
109 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 ...
0
votes
0answers
74 views

can i drag and drop the items ng-iclude to ng-view using angular-dragdrop directive?

In the document,I have two views one is with ng-include and another one from ng-view.Now i want to drag the elements from ng-include and drop them on ng-view.can i use angular-dragdrop directive for ...
0
votes
1answer
59 views

cannot figure out how to use ui-route

I cannot figure out how to correctly use ui-route, the samples on the angular-ui web site do not help. Here is my code. I want to implement a simple navigation menu. When the route matches that of ...
-2
votes
0answers
74 views

Slick grid and fileupload option [closed]

We are using angularjs,sclickgrid, jquery etc. One of our requirement is to provide a table which has as file upload option and a text field. I am not sure this is possible in slickgrid? Please can ...
2
votes
1answer
69 views

Cannot get textarea value in angularjs

Here is my plnkr: http://plnkr.co/edit/n8cRXwIpHJw3jUpL8PX5?p=preview You have to click on a li element and the form will appear. Enter a random string and hit 'add notice'. Instead of the textarea ...
-1
votes
0answers
48 views

Angular- additing a watch to custom directive function call [closed]

I have directive function which simply adds a given entity, i want to add watch to addEntity function, and manipulate the data going in, just wanted to know whether its possible? If yes can someone ...
0
votes
2answers
180 views

angularJS: ui-router equivalent to $location.search

I'm using the following to do paging in my datagrid: $location.search('page', page); where page is the current page number. Then I listen to the following event: $scope.$on('$routeUpdate', ...
0
votes
3answers
315 views

angularjs ui-router: Unknown provider: $stateProvider

I'm having troubles using the ui-router plugin of AngularJS: angular.module('myApp', []). config(['$routeProvider', '$stateProvider', function($routeProvider, $stateProvider) { $stateProvider ...
1
vote
1answer
323 views

Responsive dropdown navbar with angular-ui bootstrap (done in the correct angular kind of way)

I've created a JSFiddle with a dropdown navbar using angular-ui-boostrap's module "ui.bootstrap.dropdownToggle": http://jsfiddle.net/mhu23/2pmz5/ <div class="navbar navbar-fixed-top"> <div ...
0
votes
1answer
56 views

Cant Get AngularUI Sortable Demo to work

having trouble getting a simple sortable demo for angular-ui going here- http://jsfiddle.net/B3YDr/: <div ng-app="myApp" ng-controller="myCtrl"> <ul ng-model="items" ui-sortable> ...
3
votes
0answers
206 views

Angular UI: Unknown provider: dialogProvider

I am trying to replicate the following Angular UI example of a simple dialog with a close-button. https://github.com/angular-ui/bootstrap/blob/master/src/dialog/README.md. However, I cannot get the ...
0
votes
0answers
193 views

Angular UI tinymce errors cannot call method add of undefined

EDIT If it helps the code that it errors at is // Update model when calling setContent (such as from the source editor popup) setup: function (ed) { ...
0
votes
0answers
69 views

angular-ui ng-grid external column grouping

The drag/drop and built in menu methods are fairly useful for the ngGrid script. I am currently trying to make it so that you can perform the column grouping via an external method such as a check ...
0
votes
1answer
163 views

Select2 AngularJS - How do i dynamically add a tag item?

I have a select2 input box the defined like this: <input id="searchbox" ui-select2="autoCompleteSearch" ng-model="searchedLeafs" style="width:80%;height:36px;" class="searchbox"/> Basically, ...
0
votes
1answer
128 views

AngularJS and MVC Framework, kind of projects?

I'm new into web dev, I'm making my first steps into this world, and I was wondering something, I saw on Wikipedia that Angular was for running "single-page applications" Let's take a WAF like ASP ...
0
votes
1answer
142 views

How do I make angular-ui bootstrap accordion group work in html5mode

If I enable html5mode to true in my config module, the "hyperlink" that opens the accordion-group reroutes the url back to the base url. Not only does the accordion group not open, but you are ...
0
votes
2answers
920 views

Angular UI Datepicker not working

I've followed steps described here Getting Angular UI to work and here How to integrate AngularUI to AngularJS?, but can't get the datepicker to pop-up. Note that the fiddle refenrenced in both post ...
0
votes
2answers
87 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 ...
0
votes
2answers
60 views

How to write a collapsible directive in AngularJS?

I know that there is a collapsible directive availble as part of UI Bootstrap, but I would like to create my own one (for the sake of learning how to write directives ;-)). Now I have a little ...

1 2 3 4