zoukankan      html  css  js  c++  java
  • Some useful Javascript variables/functions in Sharepoint

    Here is a list of some useful Javascript variables/functions that I collected from many articles online. I have tested all these variables/functions in SharePoint 2010. All these are available Out-Of-The-Box, you don’t need to add any javascript libraries.

    1. _spUserId (Variable)

    This variable gives the ID of the logged in user. For an anonymous user, this variable will be empty.

    var uid = _spUserId;
     

    You can test this variable in the address bar of your browser. Try

    javascript:alert(_spUserId);
     

    You will see an alert message with the ID of the logged in user.

    2. JSRequest (Object)

    Using this JSRequest object, we can get the querystring, pathname and filename. Before using any of these properties, you should call JSRequest.EnsureSetup();

    Ex: page url is http://www.xyz.com?qid=15

    To get a querystring value

    JSRequest.EnsureSetup();
    var q = JSRequest.QueryString["qid"]; // q = 15

    Similarly, you can use

    JSRequest.EnsureSetup();
    var f = JSRequest.FileName; // current page name
    var p = JSRequest.PathName; // server relative url

    3. GetUrlKeyValue(parameter, noDecode, url) (Method)

    GetUrlKeyValue() is a javascript function using which we can get the Query string parameter either from url in the browser or a url that we specify.

    parameter(string): query string parameter from the url.

    noDecode(bool): specifies whether the value has to be encoded or not. If false value is decoded, else returned as it is.(Optional)

    url(string): the url from which Query string values are to be retrieved.(Optional)

    Ex:

    alert(GetUrlKeyValue('a', false, 'www.xyz.com?a=te%20st'));

    The above statement will return the value ‘te st’. Here we are specifying our own url.

    alert(GetUrlKeyValue('a', false));

    The above statement will look for a query string variable ‘a’ in the browser url, and returns the decoded value.

    alert(GetUrlKeyValue('a'));

    The above statement will look for a query string variable ‘a’ in the browser url.

    4. _spPageContextInfo (Object)

    _spPageContextInfo object has several useful properties, some are

    a. webServerRelativeUrl (for current web)
    b. siteServerRelativeUrl (current site collection url)
    c. webLanguage (for localization)
    d. currentLanguage (for localization again)
    e. webUIVersion
    f. userId (current user id just like _spUserId)
    g. alertsEnabled (more for current page if it has any alerts on it)
    h. allowSilverlightPrompt (to have that prompt or not on the page)
    i. pageItemId
    j. pageListId (Guid)

    We can get the webServerRelativeUrl simply by saying

    var url = _spPageContextInfo.webServerRelativeUrl;

    All the remaining object properties can be used in the same way.

    5. escapeProperly(str) (Method)

    This function returns the URL encoded value of a given string.

    var s = escapeProperly("hello world!!"); //s = "hello%20world%21%21"

    6. unescapeProperly(str) (Method)

    This function decodes a URL encoded string.

    var s = unescapeProperly("hello%20world%21%21"); //s = "hello world!!"

    7. STSHtmlEncode(htmlString) (Method)

    This function encodes an html string

    var s = STSHtmlEncode("<p>sample text</p>");
    //s = "&lt;p&gt;sample text&lt;/p&gt;"

    8. TrimSpaces(str) (Method)

    This method trims out the leading and trailing white spaces of a string. It doesn’t remove spaces created by special characters such as ‘ ’, ’

    var s = TrimSpaces("   Hello   World!!    "); //s = "Hello   World!!"

    I intentionally put more spaces between ‘Hello’ and ‘World!!’ just to show that this method doesn’t remove any spaces between words.

    9. TrimWhiteSpaces(str) (Method)

    This method trims out the leading and trailing white spaces of a string. It also removes spaces created by special characters such as ‘ ’, ’

    var s = TrimWhiteSpaces("
    
    Hello   World!!		"); //s = "Hello   World!!"

    10. LoginAsAnother(url, bUseSource)

    This method is used to login as different user.(as the name says)

    url(string): the url of the page to which the new user has to be sent after login.

    bUseSource(boolean): A boolean that indicates that the source will be added to the url, otherwise the source will be the window.location.href. This parameter is optional, default is false.

    <a href="#" onclick="javascript:LoginAsAnother('u002f_layoutsu002fAccessDenied.aspx?loginasanotheruser=true', 0)">Log on as a different user</a>

    11. STSPageUrlValidation(url)

    This function validates a url if it starts with “http” or “/” or “:” ONLY. It returns the url value back if it is a valid url and an empty value if it is an invalid url. If the url is not valid, an alert message is displayed that says “Invalid page URL:”.

    var s = STSPageUrlValidation("praneethmoka.wordpress.com"); //s = praneethmoka.wordpress.com
     
    var s = STSPageUrlValidation(":praneethmoka.wordpress.com"); //s = "";
     
    var s = STSPageUrlValidation("w.wordpress.com"); //s = "w.wordpress.com";

    Now please don’t ask me what kind of a validation this is.

    STSPageUrlValidation(url) in turn calls a method PageUrlValidation(url) and here’s the code for PageUrlValidation method

    function PageUrlValidation(url)
    {
      ULSA13:;
    if((url.substr(0, 4) == "http") || (url.substr(0, 1) == "/") || (url.indexOf(":") == -1)) { return url; } else { var L_InvalidPageUrl_Text="Invalid page URL: "; alert(L_InvalidPageUrl_Text); return ""; } }

    I will update this post as I find more useful javascript stuff.

    原文地址:https://praneethmoka.wordpress.com/2012/01/12/some-useful-javascript-variablesfunctions-in-sharepoint/

  • 相关阅读:
    C# Task ContinueWith的实现
    C# Task 是什么?返回值如何实现? Wait如何实现
    C# ExecutionContext 实现
    C# Barrier 实现
    C# CountdownEvent实现
    C# SemaphoreSlim 实现
    C# ManualResetEventSlim 实现
    C# Monitor实现
    C# SpinLock实现
    C# SpinWait 实现
  • 原文地址:https://www.cnblogs.com/bjdc/p/10943438.html
Copyright © 2011-2022 走看看