All Questions
10 questions
-1
votes
1
answer
326
views
Angular JS add regional languages to jQuery ui-datepicker directive
would you please help me to add $.datepicker.setDefaults( $.datepicker.regional[ "fr" ] ); to an angular ui-datepicker directive
here is a jsfiddle that I'm using as example
0
votes
1
answer
168
views
Jquery datepicker button is not working well
I am using datepicker for my view. I also use angularjs. The problem is that when i use ok button it doesnt not change ng-model state. it still shows ng-empty. I use this value to calculate for ...
0
votes
1
answer
362
views
How to use UTC in JQuery UI datepicker Angular directive for setting the date?
I'm using the angular Jquery UI datepicker(https://github.com/angular-ui/ui-date) for selecting the date of birth.
The datepicker correctly picks and displays time when I click on it. But, the value ...
0
votes
1
answer
776
views
How to refresh inline JQuery ui datepicker using angular js?
I have created a directive for datpicker, which is as follows:
angular.module('myApp').directive('datepicker', ['myService', '$q', function (myService, $q){
return{
restrict: 'A',
...
-1
votes
2
answers
600
views
AngularJS directive for jQuery UI datePicker does not hide calendar when scrolling
I am writing an AngularJS directive for jQuery UI datepicker. I would like to hide the drop down calendar when scrolling, but right now I am not able to get it to hide.You can visit my plunker here to ...
0
votes
0
answers
521
views
add click event to jquery ui datepicker button
I have a jQuery-ui datepicker as an angular directive as mentioned in
http://www.abequar.net/posts/jquery-ui-datepicker-with-angularjs.
The date picker adds a button tag in the run time for the ...
1
vote
1
answer
815
views
Jquery-ui datepicker in angualar directive - beforeShowDay issue
I've build directive for jquery datepicker.
my problem starts when the user click on next month action.
The calendar starts with highlight on some days - list which come from the server and when the ...
0
votes
3
answers
76
views
AngularJS how to change jquery component when a service attribute value changes
I have an AngularJS 1.0.7 web app.
I´m using a JQuery-UI datepicker component integrated within a directive. In the other hand, my application is localized in english and spanish.
I have a service ...
0
votes
1
answer
1k
views
JQuery-ui datepicker in AngularJS directive with locale
I have an AngularJS application. I´m using a JQuery-ui datepicker. Everything is working fine, but the locale.
This is my directive:
.directive('customDatepicker', function($filter, DateService, ...
2
votes
1
answer
2k
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 ...