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.
3
votes
0answers
504 views
angularjs ui-sortable: cannot call methods on sortable prior to initialization; attempted to call method 'refresh'
i'm trying to do sorting list, i take the element from the db
but..
Error: cannot call methods on sortable prior to initialization; attempted to call method 'refresh'
my html:
<div ...
3
votes
0answers
976 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: ...
2
votes
0answers
115 views
Uncaught TypeError: Object [object global] has no method 'onGoogleReady' using angular-ui's ui.maps with Angular.js
I'm trying to use angular-ui's ui-map library with Angular.js and receive the error
"
Uncaught TypeError: Object [object global] has no method 'onGoogleReady' using ui.maps with Angular.js
".
I ...
2
votes
0answers
101 views
Angularjs E2E Testing with Angulkar UI Select2 Element
I have a partial with a select2 element utilizing Angular UI http://angular-ui.github.io/
The issue I am running into is that the element is required and although i have successfully set the field ...
2
votes
0answers
320 views
How to manage state with the ui-router with multiple modules
I have an app page with 3 columns. The middle column is the main activity and is always displayed. The two side columns are widget lists, that have their own controller and states, and can be either ...
2
votes
0answers
526 views
ui-date-format in nggrid cell template
I want a date picker in my cell so i have created a cell template
var myDateTemplate= '<input type="text" ng-model="row.entity.myDate" />';
my col model is
var col = [{
...
2
votes
0answers
1k views
Angularjs bootstrap datepicker: Select multiple dates
I am trying to use the angular UI strap datepicker. How to select more than one date from the datepicker and return the value as an array.
http://mgcrea.github.io/angular-strap/#/datepicker
2
votes
0answers
260 views
AngularUI sortable does not work for more then one applications
I have created angularjs application with sortable list.
My application can be included to the page few times with other different applications. (Each of this angular applications is isolated user ...
1
vote
0answers
61 views
Twitter bootstrap modal using angularui
Hi right now I'm using an angularui modal to pop up after another when the user presses the ok button. The problem is everytime I transition to the next modal, the screen does an annoying flash ...
1
vote
0answers
123 views
How to translate Angular-UI-Botstrap datepicker?
The documentation for the datepicker (Angle-UI-BootStrap) reports:
Everything is formatted using the date filter and thus is also
localized.
Checking the documentation for the date filter can ...
1
vote
0answers
33 views
Need a event when we hide columns while using showColumnMenu
i am using showColumnMenu=true; in my grid options to filter columns in the grid. When i uncheck a column(ie., hide a column see image) i want a event to be triggered i went through gridEvents i found ...
1
vote
0answers
157 views
angular ui connected sortable refresh
I have a strange issue with 2 angular ui sortable.
I would like to use one sortable list as a template list where we can take an item and drop it to a connected list. The correct process will removed ...
1
vote
0answers
108 views
Layouts in angular
I am trying to develop a simple directive which can take a option of layout configuration.
Lets say i want to render something like this on the page
I want to render this 4 co-ordinates in one ...
1
vote
0answers
608 views
Angular Twitter Bootstrap - popover - how to add a line breakup
Please let me know how to add a line breakup in bootstrap popover.
My controller code:
.....
......
$scope.title = "Test Title";
$scope.content = "Line1 <br/> Line2";
........
.........
HTML ...
1
vote
0answers
75 views
Manage complex UI with hiding/showing windows without losing scope/control
With angular js, How can I manage an complex view layout that allows the hiding and showing of windows (and so on.) I need to do so without loosing any state or scope while reopening windows if the ...