Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 Java Vaadin 框架中开发一个应用程序,我正在使用它的 Calander 插件。现在我想禁用该日历中的特定时间段。例如,我希望用户不能选择从下午 4 点到下午 6 点的时间段,所以下午 4 点到 6 点的时间段应该在日历上显示为禁用。谢谢!
我不认为直接禁用是可能的,因此您可能应该使用一种解决方法。您可以创建一个“禁用”事件并使用 CSS 类名称来设置与保留时间不同的样式。此外,您可能应该实现在 CalendarComponentEvents 中定义的 EventResizeHandler、EventMoveHandler 和 DateClickHandler 以取消与保留时间槽重叠的所有事件。