Questions tagged [angular-ui]

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.

The AngularUI is an umbrella project for multiple sub-projects:

  • angular-ui - original project containing jQuery-specific directives as well as number of utility directives and filters.
  • bootstrap - project containing directives specific to Twitter's bootstrap. Native AngularJS directives without dependencies on any 3rd party JavaScript
  • ng-grid - fully-featured grid implementation for AngularJS. Depends on jQuery.

Code

Hosted on GitHub: https://github.com/angular-ui

Community

  • Mailing list: angular-ui@googlegroups.com
  • IRC: #angularjs
2766 questions
1
vote
1 answer

Get TinyMCE textcontent in AngularJS controller

I'm beggining with angularJS and what I want is to submit a form with an tinymce-ui textarea and submit both the HTML content and text content. For now I have the tinyMce textarea working.
1
vote
1 answer

nested expression in angular js

I want to create a nested expression in ng-bind-html eventdetails is a json object white data gets the input from a return $stateParams function
pratiklodha
  • 1,095
  • 12
  • 20
1
vote
0 answers

How does the angular $modal service interact with the DOM?

I have a strange issue where simply injecting the $modal service into my application results in strange behavior from an ngGrid instance -- the ngCanvas (and contained rows) seems to think it should be 100px shorter than the containing element. My…
lyyons
  • 393
  • 3
  • 11
1
vote
1 answer

Using angular-ui to expand/collapse a div from/to the right edge of the viewport

I'm working on creating a "drawer" div that will appear and disappear with a transition from the right side of the browser window. I'm using Angular-UI-Bootstrap's collapse directive, modified with code provided in the answer to this question. …
AJ.
  • 16,368
  • 20
  • 95
  • 150
1
vote
2 answers

Angular UI Router replace view on runtime

I'm trying to change a parent view template on runtime - inside a service. My app config looks like: $stateProvider .state('base', { abstract: true, views: { 'header': { controller: 'HeaderCtrl', …
jribeiro
  • 3,387
  • 8
  • 43
  • 70
1
vote
1 answer

Angular-bootstrap trying to call collapse from the controller

I'm using Angular 1.2 and bootstrap 3.x and I'm trying to collapse DIV using angular-bootstrap plugin. I have form with search bar that retrieves specific data from a server in the controller using my custom $resource service: $scope.sendSearch =…
SzybkiSasza
  • 1,591
  • 12
  • 27
1
vote
3 answers

AngularJS with AngularUI Bootsrap pagination directive doesn't hide results

I'm trying to use Angular-ui pagination directive for the first time and am confused why it isn't working. I can see the pagination buttons and it properly displays two pages to paginate through since there are 8 results and items-per-page="5" But…
Mitch
  • 1,374
  • 5
  • 21
  • 39
1
vote
0 answers

slide toggle from left to right in angular js

I am using hide and show an element using the angular JS . Angular toggle collapse working fine from slide up and slide down. How can I do the same thing sliding from right to left with some animation speed.…
1
vote
2 answers

Why do Angular UI buttons have a different focus border in Chrome than they do in IE?

Can anyone tell me why button focus borders are rendered with a black dashed border by default in IE11 and with a blue solid border in Chrome? You can see this if you go to http://angular-ui.github.io/ and tab over the Site/Code buttons with IE11…
Benji L.
  • 197
  • 11
1
vote
1 answer

Pass plain value to model Select2 angular-ui

I use select2 from angular-ui, everything works ok, but it passes to ng-model object and I need to get plain value this is in controller $scope.units = { createSearchChoice:function(term, data) { if…
1
vote
2 answers

Hide Parent's sbling ui-view quadrant when in a child state

When I go to a child state, I want to hide a ui-view component of a quadrant ui-view in root state. How can achieve this. ##index.html
##b.html
Pankaj Lal
  • 307
  • 1
  • 12
1
vote
1 answer

Angularjs ui-rangeSlider onHandleUp

Here is the HTML
and i want to do something like this. $scope.x=function(){ console.log($scope.rangevalue.value) } but onHandleUp is not…
vipin
  • 670
  • 2
  • 9
  • 25
1
vote
1 answer

Export ng-Grid to csv not working in IE

Tried to implement export ng-grid to csv functionality using the ng-grid-csv-export plugin. But it did not work for IE. Next, followed this blog. It uses node.js on server to return csv from webservice, however, we don't have access there. Then…
1
vote
2 answers

jquery select2 with bloodhound.js suggestion engine

I am using the angular-ui selector2 wrapper tom implement some tagging like functionality. I use bloodhound in other areas of the site for typeahead suggestions and I have a bloodhound engine already initialised for the data set I want to hit use…
Mark
  • 3,137
  • 4
  • 39
  • 76
1
vote
1 answer

How to retry route request on $stateNotFound event in AngularUI Router

I have a large AngularJS application which is split into different functional modules. It is currently bundled into single JavaScript file and thus all the modules are loaded on initial page load. I want to split the bundle by functional areas and…
Lukasz Korzybski
  • 6,689
  • 2
  • 27
  • 27
1 2 3
99
100