All Questions
15 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
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
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');
...
-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
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
0
answers
26
views
how to manipulate angular-ui-date with bower
This is my console error:
Error: [$injector:nomod] Module 'ui.date' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the ...
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 ...
0
votes
1
answer
96
views
Put Date onto DatePicker From And To From JSON
how can we put date taken from mySql db and converted to Javascript time.
I have an array of list with dates . i had been able to extract the dates like start and end date but i need a way to put ...
0
votes
1
answer
701
views
JQuery UI Datepicker and Angular JS in custom Umbraco Dashboard
I recently built a custom dashboard with the help of Sebastiaan forums in this post:
http://our.umbraco.org/forum/umbraco-7/using-umbraco-7/60887-Custom-dashboard-Umbraco-update-service
However, I ...
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>
&...
3
votes
1
answer
2k
views
jQuery UI date picker makes problems with mobile devices
We are using this jQuery UI date picker wrapper which is working fine for the Desktop version of the site.
But we do have a huge problem when it comes to a mobile device. Then when I click on the ...
-1
votes
1
answer
3k
views
How to change the background color of current day in jquery datepicker onclick?
I am using jQuery datepicker in angularjs,
By overriding css I am displaying orange color background to the current date
.ui-state-highlight{
background-color:orange;
}
Now the requirement is the ...
0
votes
2
answers
3k
views
Angularjs , How do i set the ng-model for the input to change Date and Time with auto-binding?
How to set the ng-model for the input to change Date and Time with auto-binding?
Here's the Plunker http://plnkr.co/edit/7kuvF6
I want to change the Date and Time in this case, but I don't know how ...