How can we disable the arrow that moves to previous/next month in inline calendar? #1534
Answered
by
lubber-de
sonam1318
asked this question in
Modules (Modal, Dropdown, Popup, Calendar, Toast, ...)
-
Help WantedHow can we disable the arrow that moves to previous/next month in inline calendar? I want to disable the marked arrows in the screenshot. Testcase |
Beta Was this translation helpful? Give feedback.
Answered by
lubber-de
Jun 24, 2020
Replies: 3 comments
-
Option 1Disable pointer events
.ui.calendar .prev.link,
.ui.calendar .next.link {
pointer-events:none;
} Option 2Remove the buttons .ui.calendar .prev.link,
.ui.calendar .next.link {
display:none;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
lubber-de
-
That works! Thank you :) |
Beta Was this translation helpful? Give feedback.
0 replies
-
Or use min max (or similar) to disable them without using CSS? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Option 1
Disable pointer events
Option 2
Remove the buttons