All Questions
Tagged with jquery-ui-datepicker angularjs
55 questions
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 ...
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 ...
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"]}` ...
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 &...
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
0
answers
722
views
Get start end date customRange datepicker angularjs
Hi everyone I have a custom range to pick a day in angularjs. I need a listener when i pick two days (start and end) to get the values and autoamtically send this data to my rest api.
View :
<div ...
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
342
views
Bootstrap not working inside ng-view
Im working on an app that uses MVC and angular for routing. Everything works fine. I'm having problem using Bootstrap for the looks inside my ng-view. I have a _Layout.cshtml (base file for layout).
...
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');
...
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>
&...
1
vote
0
answers
54
views
jquery datepicker in AngularJS still shows required after date is selected
I'm using a JQuery Datepicker in an AngularJS application. When the datepicker is repopulated after a Web API GET request the field still shows as required. I have tried various work-arounds but ...
0
votes
1
answer
390
views
Pass JQuery datepicker value to control action using @Url.Action
I'm trying to pass asp.net mvc view date time value to mvc controller. but it getting null value.
Chtml Code
<input type="date" id="start_date" class="form-control" placeholder="Check in" data-...
-1
votes
2
answers
165
views
Datepicker is not working when i go to the previous page in the form?
I have 4 forms.In that, 2nd form will have one datepicker field.If I moved to 3rd form and when I came back to 2nd form the date picker is not working.
The datepicker code is
jQuery(document).ready(...
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
1
answer
37
views
Angular js Datepicker and jquery
I want a calendar which shows only month and year option to display and format should be month and year (yyyy-mm).After selecting the month and year,it should update the ng-model variable value with ...