Syntax
REST API Endpoint:
https://SharePointSiteURL/_api/web?$select=QuickLaunchEnabled
REST API endpoint to use in Add_ins:
<appweburl>/_api/SP.AppContextSite(@target)/web?$select=QuickLaunchEnabled&@target=<hostweburl>
Embed Code Snippet
The following code snippet can be embed in SharePoint page or in content editor web part as a script. This example used to check whether the quick launch is enabled for the SharePoint website.
- <script type="text/javascript" src="/SiteAssets/Scripts/jquery.min.js"></script>
- <script type="text/javascript">
- $.ajax(
- {
- url: _spPageContextInfo.webAbsoluteUrl + "/_api/web?$select=quicklaunchenabled",
- method: "GET",
- headers:
- {
- "Accept": "application/json; odata=verbose"
- },
- success: function(data)
- {
-
- console.log(data.d.QuickLaunchEnabled)
- if (data.d.QuickLaunchEnabled)
- alert('Quick launch enabled on this site.');
- else
- alert('Quick launch disabled on this site.');
- }
- });
- </script>
Add-in Code Snippet
The following code snippet is used in SharePoint Add-in to get the boolean property of QuickLaunchEnabled for the SharePoint website.
-
- $.getScript(scriptbase + "SP.RequestExecutor.js", execCrossDomainRequest);
-
-
-
- function execCrossDomainRequest()
- {
-
- var executor = new SP.RequestExecutor(appweburl);
-
-
-
-
- executor.executeAsync(
- {
- url: appweburl + "/_api/SP.AppContextSite(@target)/web?$select=quicklaunchenabled&@target='" + hostweburl + "'",
- method: "GET",
- headers:
- {
- "Accept": "application/json; odata=verbose"
- },
- success: successHandler,
- error: errorHandler
- });
- }
-
- function successHandler(data)
- {
- var jsonObject = JSON.parse(data.body)
-
- console.log('Tree view enabled on this site: ' + jsonObject.d.QuickLaunchEnabled);
- if (jsonObject.d.QuickLaunchEnabled)
- $('#message').html('Quick launch enabled on this site.');
- else
- $('#message').html('Quick launch disabled on this site.');
- }
-
- function errorHandler(data, errorCode, errorMessage)
- {
- console.log("Could not complete cross-domain call: " + errorMessage);
- }