我想在内容编辑器Web部件中将“添加新事件”链接添加到日历页面。单击时应打开默认的“新事件”窗口以添加事件。怎么办?应该是什么样的链接?
由于 内甚
答案 0 :(得分:0)
如果要在整个页面中打开表单,链接应如下所示:
<a href="<weburl>/Lists/<calendarlist>/NewForm.aspx">Add New Event</a>
要在模态对话框中打开:
function openDialog() {
var url = "<weburl>/Lists/<calendarlist>/NewForm.aspx";
var options = {
title: "Add New Event",
width: 400,
height: 600,
url: url
};
SP.UI.ModalDialog.showModalDialog(options);
}
<a href="#" onclick="openDialog()">Add New Event</a>
使用网络相对网址覆盖<weburl>
,使用列表的相对网址覆盖<calendarlist>
(大部分时间是列表名称)
示例:https://mysiteurl/Lists/Calendar/NewForm.aspx
答案 1 :(得分:0)
<a href="webUrl/Lists/Calendar/NewForm.aspx">Add New Event</a>