We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to set the calendar in read-only mode? I just want to show the dates and do not allow to change them manually.
The text was updated successfully, but these errors were encountered:
Turns out it is easy to implement. Adding
if(this.multiDatesPicker.mode == 'disabled') { return; }
after onSelect : function(dateText, inst) {
onSelect : function(dateText, inst) {
allows setting the mode to disabled and prevent the user from changing data.
disabled
$('#multi-date-picker').multiDatesPicker({mode: 'disabled')}
If there is any interest I could create a PR for this.
Sorry, something went wrong.
@marcinkunert are you still thinking of submitting this PR? I'm all for it
No branches or pull requests
Is there a way to set the calendar in read-only mode? I just want to show the dates and do not allow to change them manually.
The text was updated successfully, but these errors were encountered: