change the way to select year in jquery ui datepicker angularJS
up vote
0
down vote
favorite
I am creating a web app in angularJS in which I have a calender control which helps user to enter date of birth, here is a directive which I created for the control,
angular.module('myapp').directive('datepicker', function () {
return {
restrict: 'A',
require: 'ngModel',
link: function (scope, element, attrs, ngModelCtrl) {
$(element).datepicker({
dateFormat: 'dd-mm-yy',
defaultDate: "0",
changeMonth: true,
changeYear: true,
onSelect: function (date) {
scope.date = date;
scope.$apply();
}
});
}
};
});
and my calender looks like the following
now it is very painful for the user's who born in 1980's or earlier,
I just want to know if there is any other way which make user to easily reach out the year they born?
angularjs jquery-ui datepicker jquery-ui-datepicker
add a comment |
up vote
0
down vote
favorite
I am creating a web app in angularJS in which I have a calender control which helps user to enter date of birth, here is a directive which I created for the control,
angular.module('myapp').directive('datepicker', function () {
return {
restrict: 'A',
require: 'ngModel',
link: function (scope, element, attrs, ngModelCtrl) {
$(element).datepicker({
dateFormat: 'dd-mm-yy',
defaultDate: "0",
changeMonth: true,
changeYear: true,
onSelect: function (date) {
scope.date = date;
scope.$apply();
}
});
}
};
});
and my calender looks like the following
now it is very painful for the user's who born in 1980's or earlier,
I just want to know if there is any other way which make user to easily reach out the year they born?
angularjs jquery-ui datepicker jquery-ui-datepicker
maybe try with something like this: embed.plnkr.co/fJiDJc1umtnR5veflaOP
– BartoszTermena
Nov 22 at 14:04
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am creating a web app in angularJS in which I have a calender control which helps user to enter date of birth, here is a directive which I created for the control,
angular.module('myapp').directive('datepicker', function () {
return {
restrict: 'A',
require: 'ngModel',
link: function (scope, element, attrs, ngModelCtrl) {
$(element).datepicker({
dateFormat: 'dd-mm-yy',
defaultDate: "0",
changeMonth: true,
changeYear: true,
onSelect: function (date) {
scope.date = date;
scope.$apply();
}
});
}
};
});
and my calender looks like the following
now it is very painful for the user's who born in 1980's or earlier,
I just want to know if there is any other way which make user to easily reach out the year they born?
angularjs jquery-ui datepicker jquery-ui-datepicker
I am creating a web app in angularJS in which I have a calender control which helps user to enter date of birth, here is a directive which I created for the control,
angular.module('myapp').directive('datepicker', function () {
return {
restrict: 'A',
require: 'ngModel',
link: function (scope, element, attrs, ngModelCtrl) {
$(element).datepicker({
dateFormat: 'dd-mm-yy',
defaultDate: "0",
changeMonth: true,
changeYear: true,
onSelect: function (date) {
scope.date = date;
scope.$apply();
}
});
}
};
});
and my calender looks like the following
now it is very painful for the user's who born in 1980's or earlier,
I just want to know if there is any other way which make user to easily reach out the year they born?
angularjs jquery-ui datepicker jquery-ui-datepicker
angularjs jquery-ui datepicker jquery-ui-datepicker
asked Nov 22 at 13:29
Ibrahim shaikh
29116
29116
maybe try with something like this: embed.plnkr.co/fJiDJc1umtnR5veflaOP
– BartoszTermena
Nov 22 at 14:04
add a comment |
maybe try with something like this: embed.plnkr.co/fJiDJc1umtnR5veflaOP
– BartoszTermena
Nov 22 at 14:04
maybe try with something like this: embed.plnkr.co/fJiDJc1umtnR5veflaOP
– BartoszTermena
Nov 22 at 14:04
maybe try with something like this: embed.plnkr.co/fJiDJc1umtnR5veflaOP
– BartoszTermena
Nov 22 at 14:04
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53432081%2fchange-the-way-to-select-year-in-jquery-ui-datepicker-angularjs%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
maybe try with something like this: embed.plnkr.co/fJiDJc1umtnR5veflaOP
– BartoszTermena
Nov 22 at 14:04