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

display binary image from db to angular partial view

I was trying to display image which is coming within the json object returning from an web api request. I'm able to display string, number and date/time in my angular partial but couldn't get the image displaying. here is my json object which…
1
vote
1 answer

how ng-grid manage to show data using pagination?

i am getting 10k record from db.how ng-grid is managing at client side if i use 10 per page pagination. Below is the snippet of the code.
code in controller var app = angular.module('myApp',…
Mukti
  • 291
  • 2
  • 5
  • 13
1
vote
2 answers

Angular UI router - acess stateParams from other state

I am beginner for Angular and I am sorry for my bad english. I find similar questions and answers but it doesn't help to my code... I want something like this .state('members.detail', { parent: "members", url: "/:id", …
PakiM
  • 11
  • 1
  • 2
1
vote
1 answer

$scope missing members for select binding

$scope seems to be missing binding properties for a text box typeahead and a select list. Here is a fiddle showing the behavior I want: http://jsfiddle.net/langtonr/h4MKa/1/ You can add and remove salesmen as desired. The $scope is binding…
Ryan Langton
  • 6,294
  • 15
  • 53
  • 103
1
vote
1 answer

angular-ui ui-select2 - how to use query function

ivaynberg's select2 has this great feature query ( a property of the options object that gets passed to the call to select2({})) The trouble I'm having is using this feature with angular-ui's ui-select2 implementation. I wanna do something…
Kevin Friedheim
  • 394
  • 3
  • 15
1
vote
3 answers

Adobe-Brackets Angularjs Code Completion

I am using adobe-brackets sprint39 to build the front end of websites. I am a heavy user of Angularjs. https://angularjs.org/ Is it possible to activate angularjs code completion on the adobe-brackets ide? Tern has been integrated with…
Adwin
  • 195
  • 2
  • 6
  • 21
1
vote
0 answers

Angular-ui modal return value

I'm using Angular-ui modal instance and i'm trying to get the return value but for some reason the bindings is not working correctly var openNewAlbum = function() { var modal = $modal.open({ templateUrl…
Gabriel Matusevich
  • 3,835
  • 10
  • 39
  • 58
1
vote
1 answer

Issue when an ui-calendar is first hid and then showed

I met a strange issue with ui-calendar when your calendar is first hid and then displayed. On Github, a similar issue was encountered but using tabs (which I don't use) : https://github.com/angular-ui/ui-calendar/issues/28 I edited a JsFiddle to…
JE-DW
  • 13
  • 4
1
vote
0 answers

How to specify scope for window in AngularUI Bootstrap modal?

I'm trying to create reusable confirm dialog using AngularUI Bootstrap modal, where "ok" / "cancel" buttons are in a custom window template. The issue is that while I can provide a scope for modal content, it's not available inside window template,…
szimek
  • 6,404
  • 5
  • 32
  • 36
1
vote
2 answers

Angular UI Typeahead not displaying dropdown

My dropdown isn't being displayed even though I know it's getting the correct results. Code: I can…
girlcode
  • 3,155
  • 5
  • 27
  • 41
1
vote
1 answer

ng-switch does not work with angular-ui typeahead

I am using angular-ui typeahead directive and ng-switch. The objective is when the typeahead input box has been keyed in, a row that starts with "Person info" will appear. Otherwise, it will not appear. The problem now is that this row always…
guagay_wk
  • 26,337
  • 54
  • 186
  • 295
1
vote
0 answers

Way to handle namepace collision of $modal provider of angular-ui "modal" and angular-strap "aside"

I was wondering if anyone knew a way (short of modifying angular-strap.js) that I can reconcile the $modal provider collision between angular-ui modal and anglular-strap "aside" (which uses the $modal provider)? Currently if I try to use both, only…
SideFX
  • 839
  • 1
  • 12
  • 34
1
vote
1 answer

'sharing' controllers between modules

I will try to explain this as concisely as I can. I have an app that can't be immediately converted to a single angular app. as a result we have a number of seperate modules that are effectively individual apps at the moment and are instantiated on…
Mark
  • 3,137
  • 4
  • 39
  • 76
1
vote
1 answer

angularjs ng-click not working inside the pop over directive

I added some buttons in the pop over template. When the page finishes loading the first time, clicking on the element on the page shows the popover, and when clicking on the buttons in the popover, every one works fine. But after hiding and…
1 2 3
99
100