Show 2 level hierarchy in Managed Navigation menu(Current Navigation) in SharePoint 2013

We have enabled Managed Navigation in SharePoint 2013 Publishing Site. Now when a user browses a page we want to show the current page siblings are its parent links in the Managed Navigation. Right now its showing only current page siblings in managed navigation.
Is there any way to show current page parent links in Managed Navigation menu?
For example I have a term set enabled for managed navigation with following terms:
Level1
    Level 1.1
        Level 1.1.1
        Level 1.1.2
        Level 1.1.3
Level 2
    Level 2.1
        Level 2.1.1
Level 3
    Level 3.1
Level 4
    Level 4.1 
Now if a user is on page Level1.1.1 then Current Navigation should show following hierarchy in using Managed Navigation :
Level 1.1
    Level 1.1.1 -> This node will be shown as selected
    Level 1.1.2
    Level 1.1.3
Level 2.1
Level 3.1
Level 4.1
Is the above behaviour possible by doing any out of box configuration or using SharePoint designer?
Thanks,
Anna Jhaveri

Ha i was given the same task by my client but they wanted it to be done in client side rather than creating new user control and inheriting from actual control.
i used Jquery and css to achieve staticlevel 3+  left navigation in sharepoint 2013. first of all let me explain the structure i had created.
HR department
 -->Level 1
---->Level 1.1
------>Level 1.1.1
------>Level 1.1.2
-->Level 1.2
 (same as above structure)
all i did was setting up the staticlevel ="2" and dynamiclevel="3"
so this would make left navigation with two level  and remaining of its sub sites as flyouts
Part-1:
so i used Js to convert all the flyout(dynamic class ) to static $(function(){  
$("ul.dynamic").removeClass('dynamic').addClass('static');$(".dynamic").removeClass('dynamic').addClass('static');  $(".static").removeClass('dynamic-children'); $("#zz12_RootAspMenu > li:nth-child(n) > ul").removeClass('dynamic-children');
$("leftnavigation ID"> li:nth-child(n) > ul > li.static > ul").removeClass('dynamic-children');              $("leftnavigation ID" > li:nth-child(n) > ul > li.static > ul > li:nth-child(n) > ul").removeClass('dynamic-children')
$(".ms-navedit-flyoutArrow").removeClass('dynamic-children').removeClass('ms-navedit-flyoutArrow');
by using this script all the dynamic classes get convert to static. after getting rid of classes call "dynamic" and "dynamic-children"
second part :
now we have convert all the dynamic level to static (just look wise) but functionally  its behaviors is like flyout menu items.so the following js adds the static behavior classes so it just functions like static menu
$(function()
var path = window.location.pathname;
path = path.replace(/\/$/, "");
path = decodeURIComponent(path)
$("left nav ID" > li > ul > li.static.selected > ul > li > a").each(function () {
var href = $(this).attr('href');
if (path.substring(0, href.length) === href)
$(this).closest('li').addClass('selected');
$(this).removeClass('ms-core-listMenu-selected').addClass('selected').addClass('ms-core-listMenu-selected');
else
$(this).closest('li').removeClass('selected');
$(this).removeClass('selected').removeClass('ms-core-listMenu-selected');
How above code works:
it  takes the url path of current page and compare it with the all the anchor elements href ,so when it finds the match it would go insert the static level class  like "selected" in the <li> and "ms-core-listMenu-selected" in the <a>
tag so  they function like static.
so i have done it for 4 levels so i had to put one more function as shown above to target and read <a> tag href values for 4th level and compare it with current page url.
i didn't explain in detail in here, i'll be writing up again on this issue on  my blog with screen captures soon.
Till then you can leave comments and questions.
Disadvantage :this doest work if you have anything listed other then Subsites(pages,list,libraries) in left navigation.

Similar Messages

  • How to show all the levels of managed metadata in Current navigation in SP 2013

    I am trying to use Managed metadata navigation as Current navigation/Left navigation Bar in a SharePoint intranet publishing site. I found one problem when I was configuring it:
    If we have the terms in the term set defined as follows:
    ├─> Root1
    │    ├─> L11
    │    │   ├─> L21
    │    │   │   └─> L31
    │    │   └─> L22
    │    ├─> L12
    │    └─> L13
    ├─> Root2
    └─> Root3
    (Please consider the indents as children of parent terms).
    So, there are 3 root terms and 4 levels of nesting in the terms. When I configured this for navigation it showed me only the 1st level by default i.e. Root1 -> L11, L12, L13 , Root2, Root3 in the navigation. So, the navigation is not fully displayed. If
    I navigate to a lower level, it shows me one more level below it and does not show the parent i.e. on navigating to L12, to shows me L21 and L22, but does not show the child L31 and the parent Root1. I presumed it would show me the full hierarchy.
    I did some probing around and figured that I could fix this by changing the master page. I navigated to the html file of the master page and within the vertical navigation snippet I found "PublishingNavigation:PortalSiteMapDataSource" that had these
    properties:
    StartFromCurrentNode(true) ShowStartingNode(false)
    I changed these values, that is, set 'StartFromCurrentNode' to false and 'ShowStartingNode' to true. I also set 'EnableViewState' to true which was false by default. Still , this did not fix the navigation
    Any help would be highly helpful and appreciated. Thanks

    Hi Sara,
    Thanks for the reply. I actually modified the setting what you mentioned but still I did not get the Top Level Navigation. I guess what you mentioned will work on the Top navigation. But I am trying to display the top 3 levels in the left navigation.
    ├─> Root1
    │    ├─> L11
    │    │   ├─> L21
    │    │   │   └─> L31
    │    │   └─> L22
    │    ├─> L12
    │    └─> L13
    ├─> Root2
    In the above tree, when i click on the L31 then the navigation is looking like 
                ├─> L21
                │   └─> L31
                └─> L22
    But I want to display like the below
        ├─> L11
        │   ├─> L21
        │   │   └─> L31
        │   └─> L22
    Regards... Mahesh

  • Navigation menu - current page = HOW??

    I've been pulling my hair out for days over such a simple thing as having a navigation page with page links, and wanting the current page to stand out in the navigation menu (a different style from the other links).
    I created a html content layout template to achieve this. In my template (which my page link items use) I have tried to figure out what page I am on. Nothing works at all. I've googled the hell out of this forum and the internet at large, and no go. How do I get the value (url) of the current page? as in http://myserver.com/myportal/mypage/mysubpage sot hat I may compare it to the items destination url?
    In my template, I have an if else construct, but since I don't know what to compare my #item.pageurl# (or some such) to, I'm getting absolutely nowhere. owa_util.get_cgi_env is not helping, nothing useful can be grabbed from those headers (just urls for individual portlets or items etc).
    I do not administer this server myself, nor do I have access to it other than this one pagegroup through the navigator/builder GUI. My permissions are pretty restricted too I guess.
    So is there a simple way to get the url of the page I'm on? Or has someone already done this and I've been at it for naught? Help! :(
    Portal version is OracleAS Portal 10g Release 2 (10.1.4)

    >
    by saying html content layout template, do you mean that on Navigator, you using html template (in the pageGroups tab/any-pageGroup/html templates) or a User Interface Template (within the providers tab options)?Yes, my page group -> html templates -> HTML Content Layout
    I'm using this template to style the page link items in my navigation page (you know, some divs, css and so on), my template looks like this (ignore the if construct owa_util.bla_blah('BLAH'), it obviously doesn't work but it's there to illustrate exactly what I need:
    <oracle>
    declare
    luokka varchar2(300);
    begin
    htp.p('page_url: #PAGE.EDITPAGE.URL#');
    if  owa_util.get_cgi_env('BLAH')='#ITEM.PAGENAME#' then
    class:= 'active';
    else
    class:='nonactive';
    end if;
    htp.p('<div style="padding-left:15px; font-weight:bold;background-image: url(https://myportal.com/portal/pls/portal/docs/1/1911205.PNG);background-repeat: no-repeat;background-position:left;" class='|| class||'>#ITEM.CONTENT#</div>');
    end;
    </oracle>
    if you are using the first one of them, then try the following to get page_url;
    - in the body section of the template, use <ORACLE> </ORACLE> tags-pair to write a plsql code;
    <oracle>
    declare
    v_pageUrl varchar2(50):= '#PAGE.EDITPAGE.URL#';This doesn't give me anything, and #PAGE.EDITPAGE.URL# is not available in the substitution string list. I only have substittion strings that begin with #ITEM
    begin
    htp.p('page url = '||substr(v_page_url,1,instr(v_page_url,'?',1)-1 )||'<br>');
    end;
    </oracle>
    this should give you the url of the page you are on.
    hope that helps!Edited by: Baguette on 25-Feb-2009 09:02
    Edited by: Baguette on 25-Feb-2009 09:05

  • OOTB Left Navigation error in Page Layout SharePoint 2013

    I created a SharePoint 2013 master page through Design Manager in Sharepoint 2013 and created a page layout like we do trough sharepoint designer as in sharepoint 2010 steps are below
    SharePoint Designer--->Page Layouts---->New Page Layout
    now i want to insert left navigation in the page layout ,i tried to insert the following snippet in the page layout 
    <div data-name="QuickLaunch">
                                        <!--CS: Start Vertical Navigation Snippet-->
                                        <!--SPM:<%@Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint,
    Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>-->
                                        <!--SPM:<%@Register Tagprefix="PublishingNavigation" Namespace="Microsoft.SharePoint.Publishing.Navigation"
    Assembly="Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>-->
                                        <div id="sideNavBox" class="ms-dialogHidden ms-forceWrap ms-noList">
                                            <!--MS:<SharePoint:AjaxDelta ID="DeltaPlaceHolderLeftNavBar" BlockElement="true" CssClass="ms-core-navigation"
    runat="server">-->
                                                <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderLeftNavBar" runat="server">-->
                                                    <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderLeftNavBarTop" runat="server">-->
                                                    <!--ME:</asp:ContentPlaceHolder>-->
                                                    <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderQuickLaunchTop" runat="server">-->
                                                    <!--ME:</asp:ContentPlaceHolder>-->
                                                    <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderLeftNavBarDataSource" runat="server">-->
                                                    <!--ME:</asp:ContentPlaceHolder>-->
                                                    <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderCalendarNavigator" runat="server">-->
                                                    <!--ME:</asp:ContentPlaceHolder>-->
                                                    <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderLeftActions" runat="server">-->
                                                    <!--ME:</asp:ContentPlaceHolder>-->
                                                    <!--MS:<SharePoint:SPNavigationManager ID="QuickLaunchNavigationManager"
    runat="server" QuickLaunchControlId="v4QuickLaunchMenu" ContainedControl="QuickLaunch" EnableViewState="false">-->
                                                        <!--MS:<SharePoint:DelegateControl runat="server" ControlId="QuickLaunchDataSource">-->
                                                            <!--MS:<Template_Controls>-->
                                                                <!--MS:<PublishingNavigation:PortalSiteMapDataSource
    runat="server" ID="SiteMapDS" SiteMapProvider="CurrentNavigation" EnableViewState="false" StartFromCurrentNode="true" ShowStartingNode="false" TrimNonCurrentTypes="Heading">-->
                                                                <!--ME:</PublishingNavigation:PortalSiteMapDataSource>-->
                                                            <!--ME:</Template_Controls>-->
                                                        <!--ME:</SharePoint:DelegateControl>-->
                                                        <!--MS:<SharePoint:AspMenu ID="V4QuickLaunchMenu" runat="server"
    EnableViewState="false" DataSourceId="QuickLaunchSiteMap" UseSimpleRendering="true" Orientation="Vertical" StaticDisplayLevels="3" AdjustForShowStartingNode="true" MaximumDynamicDisplayLevels="0"
    SkipLinkText="">-->
                                                        <!--ME:</SharePoint:AspMenu>-->
                                                    <!--ME:</SharePoint:SPNavigationManager>-->
                                                    <!--MS:<SharePoint:SPNavigationManager ID="TreeViewNavigationManagerV4" runat="server"
    ContainedControl="TreeView" CssClass="ms-tv-box">-->
                                                        <!--MS:<SharePoint:SPLinkButton runat="server" NavigateUrl="~site/{0}/viewlsts.aspx"
    ID="idNavLinkSiteHierarchyV4" Text="&#60;%$Resources:wss,treeview_header%&#62;" accesskey="&#60;%$Resources:wss,quiklnch_allcontent_AK%&#62;" CssClass="ms-tv-header">-->
                                                        <!--ME:</SharePoint:SPLinkButton>-->
                                                        <!--MS:<SharePoint:DelegateControl runat="server" ControlId="TreeViewAndDataSource">-->
                                                            <!--MS:<Template_Controls>-->
                                                                <!--MS:<SharePoint:SPHierarchyDataSourceControl
    runat="server" ID="TreeViewDataSourceV4" RootContextObject="Web" IncludeDiscussionFolders="true">-->
                                                                <!--ME:</SharePoint:SPHierarchyDataSourceControl>-->
                                                                <!--MS:<SharePoint:SPRememberScroll runat="server"
    ID="TreeViewRememberScrollV4" onscroll="javascript:_spRecordScrollPositions(this);" style="overflow: auto;">-->
                                                                    <!--MS:<SharePoint:SPTreeView
    ID="WebTreeViewV4" runat="server" ShowLines="false" DataSourceId="TreeViewDataSourceV4" ExpandDepth="0" SelectedNodeStyle-CssClass="ms-tv-selected" NodeStyle-CssClass="ms-tv-item" SkipLinkText=""
    NodeIndent="12" ExpandImageUrl="/{0}/images/tvclosed.png" ExpandImageUrlRtl="/{0}/images/tvclosedrtl.png" CollapseImageUrl="/{0}/images/tvopen.png" CollapseImageUrlRtl="/{0}/images/tvopenrtl.png" NoExpandImageUrl="/{0}/images/tvblank.gif">-->
                                                                    <!--ME:</SharePoint:SPTreeView>-->
                                                                <!--ME:</SharePoint:SPRememberScroll>-->
                                                            <!--ME:</Template_Controls>-->
                                                        <!--ME:</SharePoint:DelegateControl>-->
                                                    <!--ME:</SharePoint:SPNavigationManager>-->
                                                    <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderQuickLaunchBottom" runat="server">-->
                                                        <hr />
                                                        <!--MS:<SharePoint:ClusteredSPLinkButton ID="idNavLinkViewAllV4"
    runat="server" Permissions="ViewFormPages" NavigateUrl="~site/{0}/viewlsts.aspx" Text="&#60;%$Resources:wss,quiklnch_allcontent_short%&#62;" accesskey="&#60;%$Resources:wss,quiklnch_allcontent_AK%&#62;"
    CssClass="ms-core-listMenu-item">-->
                                                        <!--ME:</SharePoint:ClusteredSPLinkButton>-->
                                                    <!--ME:</asp:ContentPlaceHolder>-->
                                                <!--ME:</asp:ContentPlaceHolder>-->
                                            <!--ME:</SharePoint:AjaxDelta>-->
                                        </div>
                                        <!--CE: End Vertical Navigation Snippet-->
                                    </div>
    but i get the following error when i create page through this page layout
    "Content Place holders are only allowed in master page"
    Can anyone tell me how do i insert left navigation in page layout which is created through sharepoint designer (.aspx file) but master page is created through design manager

    Hi  ,
    As the error says, you need to  add Content Place holders to Mater Page not the Page Layout.
    For  inserting  left navigation, you can add Vertical Navigation SharePoint component to the master page using Snippets  manager:
    1.
    Open the site then click design manager link from right top corner "Settings".
    2.
    Click “Edit Master Pages” link.
    3.Click your custom mater page. It will open preview page.
    4.
    Once open the preview page then click Snippets menu from top right side. It will open “Snippet Gallery” in new tab page.
    5.
    Click the Vertical Navigation menu item in “DESIGN “tab.
    6.
    In this page we can easy to configure component properties.
    After customization must click the update button then only the changes are reflected in the component snippet.
    7.
    Once click the update button the HTML code automatically generated in the “HTML snippet” box and click “Copy to Clipboard” button.
    8.
    Open the mapped network drive then open the Mater Page HTML file and paste HTML snippet where you want the navigation to show.
    Reference:
    http://www.sharepointpals.com/post/Add-snippets-in-Page-layout-using-design-manager
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Setting up records management for a custom list in SharePoint 2013

    In a workflow 2013, I am planing to 'declare a record' on a custom list. I am doing this since I do not want users to be able to change the custom list once the record is submitted to workflow 2013.
    There are options in record declarations settings that I am not certain what to set like what values are appropriate in 'declaration of records can be performed by'.
    Since I am my own administrator on my test SharePoint 2013 website, would you tell me what I can do at the administrator's site level to enable the 'mark a record and/or declare a record feature? Basically I would like to know what options to set for a custom
    list so the records can not be modified once the custom list has been submitted to the workflow.

    Hi Wendy,
    There are 2 ways either in place records or records archive it will depend on your requirments.
    check this article it will guide you about how to configure each way
    https://support.office.com/en-nz/article/Implement-Records-Management-0bfe419e-eb1d-421a-becd-5be9fed1e479?ui=en-US&rs=en-NZ&ad=NZ
    To decide which one you will choose check the comparison in this link
    https://technet.microsoft.com/en-us/library/ee424394.aspx
    Kind Regards,
    John Naguib
    Senior Consultant
    John Naguib Blog
    John Naguib Twitter
    Please remember to mark this as answered if it helped you

  • How to build high usability navigation for Power View on SharePoint 2013?

    I have Power View on SharePoint 2013. I have both SSAS Multidimentional and Tabular model in use.
    I have several Report.drlx file in Report libary in SharePoint.
    When I click the file, it works fine, but I feel that there are usability problems like:
    A) Getting back to SharePoint site is not intuitive. Difficult to find home.
    B) Diffucult to move between report to another. Need to return Document library.
    What is best practise for displaying several Power View reports on SharePoint?
    Kenny_I

    Hi Kenny_I,
    Just as you said, we cannot directly navigate to Home page when we view an .rdlx report in SharePoint site. We need click the Arrow to go to the previous page (Document Library), then click “Home” to navigate to Home page. If we want to move from a report
    to another report, we should still use the same way. This is by design.
    If you want to jump from one report to another report, we can add a hyperlink to a text box in a sheet or view. Personally, I understand your feeling and how frustrated when you find this issue. So, it is my pleasure to help you to reflect your recommendation
    to the proper department for their consideration. Please feel free to submit your situation on our product to the following link:
    https://connect.microsoft.com/.Your feedback is valuable for us to improve our products and increase the level of service provided.
    Thank you for your understanding.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Missing checkbox in sort/filter menu of a SPGridView - SharePoint 2013

    Hi there,
    Here is my problem illustrated:
    [link=] http://postimg[dot]org/image/wcahatbl9/
    As shown above, I'd like to know how to display (and use!) checkboxes in any given filter menu of a custom SPGridView. I'm using the integrated sorting, paging and filtering features offered by SharePoint (ASP.NET). Displaying the checkboxes is the behavior
    of a standard SP List view, here in SharePoint 2013.
    I got no match on this issue after days of research. Thanks for reading.

    I see similar (but not exactly) if I enable multiple choice selection and try to filter on this field.

  • Managing Office documents (content & permission) inside SharePoint 2013 document libraries

    I have a document library inside my SharePoint 2013 publishing site collection. And I have the following scenario:-
    Someone add a word document to the document library,
    I can click on the word document inside the document library, and it will open inside my word client application:-
    Then I can click on “Edit document” button inside the word document.
    Do some modifications.
    Click on “Save” button.
    And the changes will be saved to the sharepoint document library (which is great).
    But I have the following questions:-
    Who can basically edit the word document and publish the edit to the SharePoint again? is this restricted to only users who have “edit” permissions on the document library,?
    Can I specify that only me or certain users can edit specific documents?
    If I open the word document using Firefox or chrome , I will not be able to edit the document and publish it back to SharePoint? So is this feature within IE only ?
    Can anyone advice please?
    Thanks

    Hi,
    According to your post, my understanding is that you have some questions about the documents in library.
    For the first question: yes, only the user that has more than edit permission can edit/publish the documents.
    For the second: we can set item level permission for libray using PowerShell to restrict only the created user can create and edit the items.
    http://www.hersheytech.com/Blog/SharePoint/tabid/197/entryid/28/Default.aspx
    For the third question: we can install the
    IE-Tab in the Chrome or Firefox to support opening the documents directly.
    http://stackoverflow.com/questions/14455212/how-to-open-sharepoint-files-in-chrome-firefox
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Error when click Manage in Business Data Connectivity Service Sharepoint 2013

    Dear all,
    In Sharepoint central administration, I click manage service applications. Then, I click New > Business Data Connectivity Service. After create new Business Data Connectivity Service, when I click Manage to manage this new Business Data Connectivity Service,
    there is error "Cannot complete this action as the Business Data Connectivity Shared Service is not responding. Please contact your administrator." In event viewer, there is error ""The BDC Service application is not accessible. The full
    exception text is : The HTTP request is unauthorized with client authentication scheme 'Negotiate'. The authentication header received from the server was 'NTLM'.
    I have tried to delete and create the BDC Service application, but it still did not work. I have tried to restart BDC Service and do iisreset, but it still did not work.
    Please help. Thank you.
    Best regards,
    Johanna

    Hi,
    According to your post, my understanding is that you get an issue about the Business Data Connectivity Service.
    To quickly and accurately find the issue, I recommend you can check the event log and ULS log to see if anything unexpected occurred.
    For SharePoint 2013, by default, ULS log is at
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    You can check the ULS log by the methods here:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    http://msdn.microsoft.com/en-us/library/gg193966(v=office.14).aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • What's the searchplugins folder and why doesn't its content show up in the Manage Plugins menu?

    Today on my first Search bar attempt, my search page got redirected from Google to www.bigseekpro.com, which I had never heard of. I checked my Plugins and Addons, it didn't show up there. But my home page had also been hijacked, from the tabs I normally go to, to only go to this new page. I did find in C:\uerdatada\appdata\roaming\mozilla\firefox\profiles\cawypqyo.default a new folder created a few moments before, \searchplugins, and in this a file search.xml, which contained xml commands to redirect the search activity.
    These look suspicious: the first command sets xmlsn:os to "http://a9.com", which I can't seem to find anything on with whois or tracert; bigseekpro.com itself traces to its registry at godaddy.com, but that's about all I'm finding.
    If this is a legitimate place for Firefox to look for a plugin, why doesn't the Firefox plugin manager tell me it found something there? And why couldn't the Help articles on "Search not going where you want it to" also tell me about this?
    Any ideas? Am I right to be highly suspicious of this behavior?

    Search engine plugins are kept separate from Add-ons (Extensions, Plugins, Appearance). Search plugins, both the default search engines supplied with Firefox and those that you install will be shown in the Search Bar (see [http://kb.mozillazine.org/Search_Bar Search Bar]).
    The folder '''''searchplugins''''' in your Profile folder ('''the path you mentioned''') is for search engines '''''added by you or something that you have installed'''''. You can remove any found in the Profile folder in the '''''searchplugins''''' sub-folder. The items there '''''may''''' make/have made changes to other search functions in Firefox.
    *Are searches from your '''Location Bar''' going to the place and/or search engine you expect?
    *Are searches from your '''Search Bar''' going to the place and/or search engine you expect?
    '''''The default search engines included with Firefox''''' are not in that folder in your Profile, but are located in a folder by the same name in the Programs folder where Firefox itself is installed. See [http://kb.mozillazine.org/Installation_directory Finding the Installation directory]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • How to manage huge file size documents in SharePoint 2013?

    we have different kinds of files
    .avi, .wmv, mpeg, .mpg, .m1v, .mp2, .wav, .snd, .au,.mdb,
    .db,.bat, .exe, .dll,
    and .jar
    huge in file size.
    appreciated solutions for DMS. like sharepoint and file server or any other solutions.

    You have a hard limit of 2Gb which you cannot get around with Remote Blob Storage or anything else. Beyond that size, you're going to have to store content outside SharePoint with links to the content for your readers, of using Search Indexing on the file
    location.
    If the files are large but not greater than 2Gb they can be stored in SharePoint, but you should be aware of the supported limits for Content Database size, which I recall as 100Gb for a single Content DB, or up to 200Gb for a rarely updated Content DB containing
    a single site collection.
    w: http://www.the-north.com/sharepoint | t: @JMcAllisterCH | YouTube: http://www.youtube.com/user/JamieMcAllisterMVP

  • Parent (Global) and Current (Navigation) on the Same Page

    Hello,
    I am using the managed metadata feature in a SharePoint 2013 publishing site.  I am trying to layout my navigation as shown in the diagram below.  I can not find a publishing master page that implements this parent child relationship.  My
    top navigation is use the markup:
    <PublishingNavigation:PortalSiteMapDataSource ID="topSiteMap" runat="server" EnableViewState="false" SiteMapProvider="GlobalNavigationSwitchableProvider" StartFromCurrentNode="false" StartingNodeOffset="0"
    ShowStartingNode="false" TrimNonCurrentTypes="Heading"/>
    <SharePoint:AspMenu ID="TopNavigationMenu" runat="server" EnableViewState="false" DataSourceID="topSiteMap" AccessKey="&lt;%$Resources:wss,navigation_accesskey%&gt;"
    UseSimpleRendering="true" UseSeparateCss="false" Orientation="Horizontal" StaticDisplayLevels="1" AdjustForShowStartingNode="true" MaximumDynamicDisplayLevels="1" SkipLinkText=""/>
    I have tried using the same markup, using a different StartingNodeOffset and SiteMapProviders, for the side menu with no success.
    Thanks,
    Bob

    Hi,
    According to your post, my understanding is that you wanted to create Parent (Global) and Current (Navigation) on the Same Page.
    You can make quicklaunch work contextually like structural nav quicklaunch using Managed Metadata navigation. Please refer to:
    Managed Metadata Navigation - How do you make quicklaunch work contextually like structural nav quicklaunch?
    In addition, you can used JQuery and CSS to achieve staticlevel left navigation in SharePoint 2013.
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/forums/sharepoint/en-US/54edc501-0594-49e3-86b2-40ecf72bc68e/show-2-level-hierarchy-in-managed-navigation-menucurrent-navigation-in-sharepoint-2013
    More information:
    Overview of managed navigation in SharePoint Server 2013
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Why SharePoint 2013 have only 2 level global navigation ??

    I just want to know why SharePoint 2013 have 2 levels of global navigation hierarchy by default. Is it possible to make it up to 3,4 levels.
    For example:
    Main Site -> Subsite -> Subsite Nodes -> Subsite Nodes Subsite -> Child Nodes & so on
    Something like above hierarchy.
    Thanks in advance for your answers..!!

    Yes, you can absolutely have more than 2 levels of navigation. You will need to update your master page through to allow for more dynamic levels of navigation.
    You might find the following thread helpful.
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/05cfb854-9a18-4f61-a9f4-55d9cd3130ec/create-multilevel-global-navigation-menu-in-sharepoint
    Also be aware that there was a bug in SP2013 where only two levels of navigation would ever show. This was fixed last year.
    http://ericoverfield.com/sharepoint-2013-structured-navigation-dynamic-menus-fixed-august-2013-cu/
    Eric Overfield - PixelMill -
    ericoverfield.com -
    @EricOverfield

  • SharePoint 2013---How to convert current left Navigation into tree view

    Hi All,
    I want to convert current left navigation into tree view in SharePoint 2013. When we click on Modify Navigation and set headers and links; I need that should be convert into tree view. All headers should be expandable to thier links.
    I just want tree view on navigation headers and links. not for all site and subsites which we can enabled from site settings --> Modify All Site settings --> Tree view
    Please help me Master Page editing on Navigation Generation.. Thanks in advance!
    Regards,
    Anna

    Hi Anna,
    If you want to replace the Quick Launch part with the custom treeview web part in master page, you can comment out or remove the quick launch code block "<!--SPM:<SharePoint:SPNavigationManager id="QuickLaunchNavigationManager.....>....<>-->",
    then insert the custom web part snippet code in proper location in seattle master page, then all pages inheriting the seattle master page will have this web part.
    Note, please back up the master page before customizing the original master page for recovery.
    http://msdn.microsoft.com/en-us/library/office/jj862341(v=office.15).aspx
    http://www.sharepointpals.com/post/Add-snippets-in-Page-layout-using-design-manager
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] 
    Daniel Yang
    TechNet Community Support

  • Getting Error while Installing Workflow Manager 1.0 on Sharepoint 2013 On-Prem server

    I am trying to install Workflow Manager 1.0 on our SharePoint Server 2013 which is On-Prem installation. The SharePoint Server 2013 is functioning correctly. During the installation of Workflow Manager 1.0 on the same SharePoint 2013 server, I receive the
    following message: "Port number 9355 specified for HTTPS Port is blocked" I have checked our firewall Inbound rules and this port is not blocked.
    Any reason why this could be happening or did I miss anything?
    Thanks Snehal H.Rana SharePoint Consultant

    I am happy to inform you that I was able to resolve this error. I configured this on different ports other than 9355. We need to modify 2 files called "ClusterManifest.1.0.xml" and "ClusterManifest.current.xml" in c:\Program
    Files\Windows Fabric\Bin. They were pointing to older FQDN under following node:
     <NodeList>
            <Node NodeName="yourserverfqdn" IPAddressOrFQDN="yourserverfqdn" IsSeedNode="true" NodeTypeRef="DefaultNodeType" />
          </NodeList>
    These files won't let you edit directly in notepad so you will need to make a copy of these files (just in case). Open up the notepad as "Run As Administrator". Drag these files to the notepad. After you are done editing, save these as original
    names but make sure that the extension is .xml
    You will also need to do IISReset
    That did the trick for me.
    Thanks Snehal H.Rana SharePoint Consultant

Maybe you are looking for