7/24/2008

Couple of useful JavaScript global variables in SharePoint

If you're using custom JavaScripts with SharePoint some global JavaScript variables may come in handy.

These variables work if you're using SharePoint's default or any other custom master page.

L_Menu_BaseUrl - the base URL of the site / subsite. Very useful when you need to determine the absolute path of the site in JavaScript. Example: document.location = L_Menu_BaseUrl + 'lists/calendar/allitems.aspx' //redirects to Calendar list

L_Menu_LCID - the LCID of the site you're in. Useful if you need to determine the language of the site. The list of Locale IDs can be found here. I'm using the LCID for localizations in ERTE project. See the example of checking LCID below:

.
L_Menu_SiteTheme - the name of the theme applied to the site.

There is one more useful variable, but this one can't be used on custom master pages that you created. This one is used in the SharePoint's default pages:

_spUserId - the ID of the logged in user.

Oznake ponudnika Technorati: ,

5 comments:

  1. Anonymous4:36 PM

    sweet!! great info for the ajax moss devs...

    ReplyDelete
  2. Hi,
    Is it possible to see a list of these global variables?
    For instance, I would like one to retrieve the current url not just the base?

    Thanks alot

    Chris

    ReplyDelete
  3. Hi, Chris. For this you don't need the SharePoint's variables. You can use the JavaScript DOM. If you need the full url you can use document.location or document.location href (for example: alert(document.location.href).

    For other options concerning URL you can find some more useful information here:

    http://www.exforsys.com/tutorials/javascript/javascript-location-object-properties.html

    ReplyDelete
  4. Anonymous5:11 PM

    Great! After googling for five hours you have finally discovered me option how to get current site's URL.

    Thank you.

    ReplyDelete
  5. Anonymous5:00 PM

    "L_Menu_LCID - the LCID of the site you're in."

    Incorrect. This is the site setting not the display setting. If the user does not follow the site's regional settings and has chosen their own, then this variable will be incorrect

    ReplyDelete

Note: Only a member of this blog may post a comment.