Tagged Questions
0
votes
1answer
61 views
Best way to dynamically update jQuery UI attribute with Angular JS?
I have an attribute in which I add the "draggable" directive to. This enables the jQuery UI draggable component. My directive is as follows:
testModule.directive('draggable', function () {
...
2
votes
1answer
60 views
Do event handlers need to be removed on directives when $destory fires?
I've seen a lot of directive examples including those by the AngularUI team where they don't appear to do any cleanup.
Here's an example from their ui-date directive which creates a jQuery ...
1
vote
2answers
346 views
How to format inital date value using AngularJS ui-date directive?
When I get a model from the server it looks like this:
$scope.m =
{
name: "John",
Dt: "2013-10-03T18:47:33.5049087-07:00"
};
The view looks like:
<input title="Date" ui-date ...
0
votes
1answer
47 views
Passing complex information in Angular directives
I am using JQuery UI in an Angular application. I noticed that I was repeating the same pattern for each directive: Call the JQuery UI function with a single complex object for initialization. ...
0
votes
0answers
38 views
ui-date day start TO day end
i use ui-date (https://github.com/angular-ui/ui-date) in my project.
i have problem with changing options realtime in controller.
HTML page
<input ui-date="startOptions" ng-model="dateStart" ...
0
votes
1answer
150 views
Unable to drag and drop with angular js
I am newbie to angularjs. currently I am working with a project for drag and drop but with pure jquery ui I am able to drag and drop but whenever I am going to include this with angularjs then I am ...
0
votes
0answers
671 views
Issue with updating the jQuery UI Slider from Angular directive
I'm trying to get a custom slider up and running using the directives concept.
I have an issue when updating the slider from the input field.
The directive part below and a working example on ...
0
votes
1answer
142 views
Move item from child to parent controller with draggable+droppable directive
I have two directives, draggable and droppable. The directives themselves apply the jquery ui functions to the elements. My draggable items are in a controller that has a parent controller with a ...
0
votes
1answer
962 views
Drag and Drop with Angular JS and JQuery
Couple of days ago I found this interesting post at http://www.smartjava.org/content/drag-and-drop-angularjs-using-jquery-ui and applied it into my website. However when I progressively using it ...
0
votes
0answers
180 views
Angular directive which fires a jquery ui widget when finished rendering
I'm trying to create an angular directive which fires a jquery ui widget when the template has finished rendering. The template is in a separate html file, the data for this template is put on the ...
0
votes
1answer
843 views
Jquery and angular JS select dropdown selection without manual selection
I am having a select drop down, and I am adding options dynamically through Jquery append on it, and I want to associate all data in the dropdown, I mean all options selected into angular JS model.
I ...
0
votes
1answer
590 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 ...
2
votes
1answer
2k 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
1answer
301 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 ...
2
votes
3answers
765 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
141 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, ...
2
votes
2answers
794 views
Disable jQuery Button with AngularJS and Form Validation
I would like to disable my jQuery button based on form validation. According to the docs this is fairly easy with regular buttons using syntax such as:
<button ng-click="save(user)" ...