本文介绍了如果sharepoint 2013中的列表中没有项目,如何更改消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我想更改显示Webpart中没有项目的消息。我试图覆盖变量"NoListItem"通过使用下面的javascript代码并在JS链接属性中使用。但它不起作用。请帮忙。

I want to change message which shows when there is no item in the Webpart. I have tried to override the variable "NoListItem" by using the below code of javascript and used in JS link property. But it do not worked. Please help for this.

(function() {

//   Initialize the variables for overrides objects
	var overrideCtx = {};
	overrideCtx.Templates = {};
	
	overrideCtx.BaseViewID = 1;
	overrideCtx.ListTemplateType = 100;
		
	//alert("Override call worked");

	overrideCtx.Templates.NoListItem = "There are no Pending tasks";	
    /*
     * Register the template overrides.
     */	SPClientTemplates.TemplateManager.RegisterTemplateOverrides(overrideCtx);
}) ();

推荐答案


这篇关于如果sharepoint 2013中的列表中没有项目,如何更改消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 16:35