如何隐藏日历列表的重复和全天事件栏目
因为项目需要,需要隐藏重复和全天事件栏目,在列表设置无法隐藏,采用sharepoint Manager2013也无法隐藏。如下图:
这里采用Jquery去隐藏找到日历的NewForm.aspx,如下图:
打开后添加【内容编辑器】的webpart,如下图:
编辑HTML
<script src="/_layouts/15/JunHe_Master/js/jquery-1.9.1.js" type="text/javascript"></script><script type="text/javascript">_spBodyOnLoadFunctionNames.push("hideall");
function hideall()
{HideField("重复");
HideField("全天事件");
}function HideField(title)
{$(".ms-formtable").find("h3 nobr").each(function () {var text = $(this).text();if(text==title)
{$(this).parent().parent().parent().hide();}})}</script>编辑页面EditForm.aspx同样的做法,做好,效果图
显示页面dispform.aspx添加如下JS
<script src="/_layouts/15/JunHe_Master/js/jquery-1.9.1.js" type="text/javascript"></script><script type="text/javascript">_spBodyOnLoadFunctionNames.push("hideall");
function hideall()
{HideField("重复");
HideField("全天事件");
}function HideField(title)
{$(".ms-formtable").find("h3").each(function () {var text = $(this).text();if(text==title)
{$(this).parent().parent().hide();}})}</script>