本文介绍了SharePoint 2013开箱即用的日历自定义的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我有一个开箱即用的SharePoint 2013日历。我需要能够执行以下操作:I have a SharePoint 2013 out of the box calendar. I need to be able to do the following:阻止所有星期三上午8点到9点:Block all Wednesdays 8am-9am :删除约会选择控件上的每小时列表(日期/时间)并用8:30而不是8:00(控件的30分钟增量选项而不是每小时)替换。我已经在列表和日期/时间预约字段上使用数据验证来满足其他要求。因此,UI中的数据验证不是一种选择。Remove the hourly listing on the appointment selection control (date/time) and replace with 8:30 instead of 8:00 (30 minute increments option for the control instead of hourly). I am already utilizing data validation on the list and date/time appointment field for other requirements. So, data validation from the UI is not an option.推荐答案如果想要阻止所有星期三上午8点到9点,我们可以使用Jquery DatePicker来实现:If want to block all Wednesdays 8am-9am, we could use Jquery DatePicker to achieve:<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <script type="text/javascript">将脚本添加到日历新项目表单中,当选择日期时,它将阻止所有星期三:Add the script into the Calendar new item form, when select date, it will block all Wednesdays:小时需要30分钟增加,早上8点,我们可以像这样增加分钟值:And for the hour need 30 minute increase for 8 am, we could increase the minutes value like this: 这篇关于SharePoint 2013开箱即用的日历自定义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-24 12:22