Tagged Questions
0
votes
1answer
18 views
Angular slider custom callback on slide
I'm beginning with Angular.js directives, and in any application, I'm using jQuery UI sliders.
What I would to do is to execute a custom callback on the slide event of these sliders, depending of the ...
0
votes
1answer
71 views
jQuery date picker not working with ng-grid cell
I am having an issue with integrating jQuery's date picker with the AngularJS ng-grid extension; more specifically the jQuery date picker is not able to push data back to the ng-grid and instead ...
-1
votes
0answers
152 views
Angular-UI datepicker won't close after date selection in IE 10 [closed]
It can be seen in their own demo while running IE 10: http://angular-ui.github.io/#directives-date
Note that it uses jQuery UI's datapicker, so I'm including the jQuery-UI tag.
0
votes
0answers
59 views
Adding a Angular-UI ui-date component causes calendar to be shown at bottom of page
It otherwise works as it's supposed to, but renders the calendar widget at the bottom of the page until its shown from the element that it's attached to, then it disappears. Why is this happening? ...
1
vote
1answer
107 views
AngularJs + JqueryUI slider initial values
this is my first post here, so I hope it will be comprehensive.
I'm using AngularJs and I've added a JqueryUI slider using an angular directive.
I've found a lot of examples on how to do that, but ...
0
votes
0answers
101 views
Angularjs and JQueryUI selectable: programmatically updating checkboxes
Fiddle: http://jsfiddle.net/Rolus/CSKCb/44/
Basic situation: I have an array of item objects that are being displayed in a table via ng-repeat. Each item can be selected via a checkbox which is bound ...
0
votes
1answer
132 views
Angular-UI One day is subtracted from date in ui-date
The situation
I want to use ui-date to set/edit a date in my app. I use the latest stable versions of angular, angular-ui, jquery-ui etc.
The problem
As soon as a date is selected using the ...
1
vote
2answers
98 views
$scope.slider - not updated
I have a jquery-ui slider which updates a textbox with the slider's value.
the textbox has ng-model so I can get the value from the controller - but the value is not updated after the slider is moved ...
0
votes
1answer
128 views
Is there a conflict between jQuery UI “autocompleteselect” event and AngularJs event?
I would like to know if there is a known conflict between jQuery UI "autocompleteselect" event and some AngularJS event?
Here is my case :
I have a table and an autocomplete input
<label ...
0
votes
1answer
153 views
How to update selected itmes of jQueryUI Selectable with AngularJS?
I would like to use the jQueryUI Selectable widget together with AngularJS. I managed to include it using the ui-jq jQuery Passthrough directive from AngularUI which is working well to get the desired ...
0
votes
0answers
89 views
2-way binding between a multi-level object and an HTML tree representation
I am making an app component to manage multi-level navigation menu. I am creating an HTML tree from an object in the controller, and using jQuery UI to rearrange it (angular UI implementation of ...
0
votes
3answers
279 views
jQuery UI passthrough official example: ui is not defined
I copied the jQuery passthrough example from here http://angular-ui.github.com to this fiddle http://jsfiddle.net/ilyaD/Xe48t/3/ and it is not working. I am getting ui is not defined
this is the JS:
...
1
vote
3answers
286 views
Using Multiple Datepicker in Angular directive
I have used multiple datepicker in angular directive and it gives me an error
Uncaught Missing instance data for this datepicker because if I removed one li then It doesn't set id in directive.
...
0
votes
1answer
375 views
angularjs and value of jqueryui datepicker input box
I have a datapicker of jqueryUI:
<div class="span4">
<label>Start Date; </label>
<input type="text" name="sDate" id="datepicker1" ng-model="item.date.sDate" class="ng-pristine ...
0
votes
1answer
72 views
using selectmenu plugin with angular
I was playing with using the selectmenu plugin with angular. It is a little trickier than the run of the mill plugins, wrapping it up as a directive does not quiet cut it because of the nested tags, ...