Topic: Set Max number of options displayed in DatePicker
Jonathan Yates pro asked 8 years ago
Kamil Paciepnik answered 8 years ago
$('.datepicker').pickadate({
min: new Date(2015,3,20),
max: new Date(2015,7,14)
})
Can You show me Your code? Then I can help You solve the problem of stretching.
Regards
Jonathan Yates pro answered 8 years ago
Kamil Paciepnik answered 8 years ago
Jonathan Yates pro answered 8 years ago
Kamil Paciepnik answered 8 years ago
Jonathan Yates pro answered 8 years ago
Jonathan Yates pro answered 8 years ago
Jonathan Yates pro answered 8 years ago
Kamil Paciepnik answered 8 years ago
$('.datepicker').pickadate({
min: -50, //the number of days from the current date
max: +7 //the number of days from the current date
})
Regards Jonathan Yates pro answered 8 years ago
Jonathan Yates pro answered 8 years ago
Kamil Paciepnik answered 8 years ago
Jonathan Yates pro answered 8 years ago
Jonathan Yates pro answered 8 years ago
sysadmin pro answered 8 years ago
Kamil Paciepnik answered 8 years ago
Jonathan Yates pro answered 8 years ago
Kamil Paciepnik answered 8 years ago
WiseGuy pro premium priority answered 4 years ago
Here is a solution. Maybe is not perfect, but at least works while MDB get the solution
$('.datepicker').pickadate();
var minyear = 1920; //Your minimum year
var maxyear = 2050; //Your maximum year
$('.picker__select--year').children('option').remove(); // remove default values
for (var i = minyear; i <= 2050; i++) {
var o = new Option(i, i);
$(o).html(i);
$('.picker__select--year').append(o);
} // this rebuild the dropdown year
Krzysztof Wilk staff commented 4 years ago
Hi!
Thanks for the solution! There's been a lot of changes since this thread was made, so now you can try this - https://mdbootstrap.com/docs/jquery/forms/date-picker/#date-limits
If you have any other questions about the datepicker, please create a new thread :)
Best regards
FREE CONSULTATION
Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.
Answered
- User: Pro
- Premium support: No
- Technology: General Bootstrap questions
- MDB Version: -
- Device: -
- Browser: -
- OS: -
- Provided sample code: No
- Provided link: No