脚本编辑器仅在编辑页面模式下工作

时间:2017-02-07 12:47:09

标签: javascript sharepoint sharepoint-2013

在编辑页面模式下,脚本可以正常工作,但是当我停止编辑页面时,脚本将无法运行。

<script language='javascript' type='text/javascript'>
function FilterOMenu(c, a) {
    //Be carefull with overriding SharePoint core functions, for now this will work (September 2016 CU). Ensure you test this every time after installing a SharePoint update.
    //SharePoint default (I placed this above, cause it returns.)
    if (a == null)
        return;
    var b = a.tagName == "DIV" ? a.parentNode : a;
    //End SharePoint default

    //Custom implementation to sort the filter
    var fieldInternalName = a.getAttribute("name");

    //some sort functions
    var ascComparer = function(a,b){return a.text<b.text ? -1:a.text>b.text ? 1 : 0;};
    var descComparer = function(a,b){return a.text>b.text ? -1:a.text<b.text ? 1 : 0;};
    var ascDateComparer = function(a,b){d1 = Date.parse(a.text);d2 = Date.parse(b.text);return d1<d2 ? -1:d1>d2 ? 1 : 0;};
    var descDateComparer = function(a,b){d1 = Date.parse(a.text);d2 = Date.parse(b.text);return d1>d2 ? -1:d1<d2 ? 1 : 0;};

    var myCustomSort = {};
    //Add the field internal name and give a comparer as value to sort
    //As example the title column as your case is
    myCustomSort["Kuup_x00e4_ev"] = descDateComparer;
    //myCustomSort["Aktiivne"] = ascComparer;
    //console.log(myCustomSort["Date"]);

    if(typeof c != "undefined" && c != null && typeof myCustomSort[fieldInternalName] != "undefined"){//check if you implemented a custom sort for the current internalname
        //select all items that are checkable (the options)
        var allSelectableItems = c.querySelectorAll('[checked]');
        if(allSelectableItems.length > 0){
            var elementInnerhtmls = [];
            var htmlToReplace = "";
            var htmlToAppend = "";
            for(var i = 0;i<allSelectableItems.length;i++)
            {
                elementInnerhtmls.push({text: allSelectableItems[i].getAttribute("text"),html:allSelectableItems[i].outerHTML});
                htmlToReplace += allSelectableItems[i].outerHTML; 
            }
            elementInnerhtmls = elementInnerhtmls.sort(myCustomSort[fieldInternalName]);
            for(var i = 0;i<elementInnerhtmls.length;i++)
            {
                htmlToAppend += elementInnerhtmls[i].html;
            }
            //replace the original html with the sorted html
            c.innerHTML = c.innerHTML.replace(htmlToReplace,htmlToAppend);
        }
    }
    //SharePoint default
    OMenu(c, b, null, null, -1)
    //End SharePoint default
} </script>

我设置了语言和类型属性,但仍然没有。 有人能告诉我为什么我的发布页面脚本只在我编辑页面时才会运行吗?

1 个答案:

答案 0 :(得分:0)

以下情况通常会发生此问题:

  • 脚本标签没有type=”text/javascript”
  • “SP.js”“SP.Runtime”文件未正确引用。
  • 您没有调用ExecuteOrDelayUntilScriptLoaded函数。
  • Minimal Download Strategy Feature已激活。
  • 代码编写不正确!

有关更多详细信息,请选中SharePoint 2016: JSOM is only working in Edit Mode