All Questions
Tagged with jquery-ui-datepicker angularjs
55 questions
0
votes
3
answers
3k
views
"Object doesn't support property or method 'shift'" in IE on Focus to JQuery Datepicker (Only after month/year is changed)
I have a JQuery Datepicker using an AngularJS Directive, the datepiker works fine in Chrome/FireFox/Edge, but semi-works in IE.
The issue is the datepicker calendar will appear when you enter the ...
1
vote
0
answers
15
views
I need to highlight a datepicker method only for a specific input field
There are 7 input fields in my code but I want to use them for only one. Also there are multiple pages where this datepicker is used all done through a common datepicker directive. I don't want the ...
3
votes
2
answers
21k
views
How to use datepicker in AngularJS using custom directive as a class?
Below are my HTML and Javascript code which I used.
HTML Code:
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script>
&...
2
votes
1
answer
492
views
How to pass controller Function variable to Datepicker Directive?
I am new to Angularjs. I have put 2 Datepickers. I need that When I select date from first datepicker then the smaller dates from that date should be disabled in second Datepicker. I am unable to set &...
2
votes
2
answers
2k
views
jQuery UI Datepicker is not working in Angular JS UI Bootstrap modal
I am not able to open jQuery UI Date Picker in UI Bootstrap Model. Normal HTML date picker is opening up but jQuery Date Picker is not opening up. Here is the code:-
Test.html
<!DOCTYPE html>
&...
0
votes
1
answer
1k
views
jQuery UI Datepicker - Hide previous navigation arrow for a specific month
I have a simple angular code that opens the jQuery datepicker with a future date (within an angular directive):
scope.StartDate = $filter('date')(scope.BillingDate,'MM/dd/yyyy');
...
5
votes
3
answers
10k
views
Referencing a Bootstrap icon within jQuery datepicker buttonImage attribute?
What value should I be using for the jQuery datepicker buttonImage attribute?
I would like to use the Bootstrap calendar icon with the jQuery datepicker. I can use the icon image in the html page ...
1
vote
1
answer
439
views
Angular UI directive inside custom directive
Similar question but the question isn't sufficiently answered
In the following code, why doesn't uib-datepicker-popup turn into an angular UI date picker?
Am I missing some flag/compile option for ...
0
votes
3
answers
2k
views
Angular datepicker directive with function binding
I am beginner with angular.
Please help me fix this plunk
I am trying to use only one call back for onSelect callback of jquery UI datepicker widget which is in my controller instead of repeating the ...
0
votes
1
answer
2k
views
In Bootstrap UI datepicker focus is not returning back to the date field when clicked on a date
When I click on Today, clear or close button the focus comes back to date field.
I want same functionality when I click on any particular date.
2
votes
3
answers
10k
views
Jquery datepicker selected date is not considered in ng-change - AngularJS
Kindly help me to solve this issue.
I am using jquery datepicker with AngularJS. I am trying to get the selected date and pass it with a function as parameter. For this I am using the following code.
...
0
votes
0
answers
190
views
Change weekdays's header in datepicker
I want to change the weekdays's name to a string array like
From
$scope.dateOptions = {formatDayHeader: 'QTX'}
something like
`$scope.dateOptions = {formatDayHeader: ["b","c","c","c","c","c","c"]}` ...
0
votes
2
answers
586
views
Remove month navigation buttons in uib-datepicker
how to disable/remove the month/year navigation button on the Angular uib-datepicker (https://angular-ui.github.io/bootstrap/#!#datepicker)
We want to remove the ability for users to click on the "...
0
votes
0
answers
520
views
How to add the jQuery date picker in Angularjs ui-grid?
I have been trying to add Jquery Datepicker in Angularjs UI-grid by using with custom cell template.
When I select a date from the Jquery date picker, UI-Grid functionalities are not working for ...
0
votes
2
answers
1k
views
jqueryUI datepicker not showing within ng-if directive of angularjs
I have a sample here where date picker is defined as
<div ng-if="show_d">
<input id="date2" type="text" ng-model="date2">
</div>
which is not fires the datepicker if that ...