Popular Posts
Export list schema from sharepoint http:// YOUR_SERVER_URL / PATH_TO_SITE_CONTAINING_LIST /_vti_bin/owssvr.dll?Cmd=ExportList&List= {YOUR_LIST_GUID} JSRequest, Get parameters from querystring with javascript in SharePoint Provides method to parse query string, filename, and pathname from URL // Initialize first JSRequest.EnsureSetup(); // Get the current fil... ROBOCOPY: Robust File Copy for Windows -------------------------------------------------------------------------------    ROBOCOPY     ::     Robust File Copy for Windows --------...
Stats
Form tool
var FormTool = {
    submit: function(obj, theForm){
        var f = theForm && theForm.tagName == "FORM" ? theForm : document.createElement("form");
        if(obj){
            var e = false;
            for(var i in obj){
                if(i.toString().charAt(0) == "$"){  // form attribute
                    f.setAttribute(i.toString().substring(1),obj[i]);
                }else{
                    e = document.createElement("input");
                    e.type = "hidden";
                    e.name = i;
                    e.value = obj[i];
                    f.appendChild(e);
                }
            }
        }
        if(!f.parentElement) document.body.appendChild(f);
        f.submit();        
    }
};
// ex:
// FormTool.submit({$action:'/myPage.php',pageIndex:2,pageSize:10});
View mobile version