zoukankan      html  css  js  c++  java
  • JSOM Create ListFolder

    <script type=”text/javascript”>
    
    var currentcontext = null;
    
    var currentweb = null;
    
    ExecuteOrDelayUntilScriptLoaded(AddFolder, “sp.js”);
    
    function AddFolder()
    {
    
    currentcontext = new SP.ClientContext.get_current();
    
    currentweb = currentcontext.get_web();
    
    this.list = currentweb.get_lists().getByTitle(“ListName“);
    
    var listItemCreationInfo = new SP.ListItemCreationInformation();
    
    listItemCreationInfo.set_underlyingObjectType(SP.FileSystemObjectType.folder);
    
    listItemCreationInfo.set_leafName(‘NewFolder‘);
    
    var newItem = list.addItem(listItemCreationInfo);
    
    newItem.update();
    
    currentcontext.load(currentweb);
    
    currentcontext.load(list);
    
    currentcontext.executeQueryAsync(Function.createDelegate(this, this.ExecuteOnSuccess),
    Function.createDelegate(this, this.ExecuteOnFailure));
    
    }
    
    function ExecuteOnSuccess(sender, args) {
    SP.UI.Notify.addNotification(‘Folder created successfully’, false);
    }
    
    function ExecuteOnFailure(sender, args) {
    alert(“Error in Script”);
    }
    
    上善若水 海纳百川
  • 相关阅读:
    ajax 前台返回后台传递过来的数组
    js中push的用法
    split 的用法
    ckeditor上传图片
    FTP安装配置
    批量删除.svn文件
    Ext flex属性
    Extjs3 主题样式
    Ext.apply与Ext.applyIf
    SharePoint2010 Office Web Apps
  • 原文地址:https://www.cnblogs.com/NetUser/p/2760771.html
Copyright © 2011-2022 走看看