I want to implement three level Horizental navigation on the top navigation and menu items are created based on the data available in a SharePoint List.

Hi All,
I want to implement three level Horizental navigation on the top navigation and menu items are created based on the data available in a SharePoint List.
Implement this requirement through customization, how can i start any help
Thanks

Hello,
You can follow these links to get the result that you want. You can get the desired result either using the custom list or a site map. Please make sure when you edit the master page, dont work on the original v4.master. Always make a a copy and then work
on it.
This link will show you how get that navigation using a list.
http://www.bitsofsharepoint.com/BlogPoint/Lists/Posts/Post.aspx?ID=60
This link will show you how get that navigation using a sitemap.
http://www.sharepointdiary.com/2012/01/custom-top-navigation-using-sitemap.html
Please mark as "Answered" if this helped you.
Thanks,
norasampang

Similar Messages

  • I have a VI and an attched .txt data file. Now I want to read the data from the .txt file and display it as an array in the front panel. But the result is not right. Any help?

    I have a VI and an attched .txt data file. Now I want to read the data from the .txt file and display it as an array in the front panel. But the result is not right. Any help?
    Attachments:
    try2.txt ‏2 KB
    read_array.vi ‏21 KB

    The problem is in the delimiters in your text file. By default, Read From Spreadsheet File.vi expects a tab delimited file. You can specify a delimiter (like a space), but Read From Spreadsheet File.vi has a problem with repeated delimiters: if you specify a single space as a delimiter and Read From Spreadsheet File.vi finds two spaces back-to-back, it stops reading that line. Your file (as I got it from your earlier post) is delimited by 4 spaces.
    Here are some of your choices to fix your problem.
    1. Change the source file to a tab delimited file. Your VI will then run as is.
    2. Change the source file to be delimited by a single space (rather than 4), then wire a string constant containing one space to the delimiter input of Read From Spreadsheet File.vi.
    3. Wire a string constant containing 4 spaces to the delimiter input of Read From Spreadsheet File.vi. Then your text file will run as is.
    Depending on where your text file comes from (see more comments below), I'd vote for choice 1: a tab delimited text file. It's the most common text output of spreadsheet programs.
    Comments for choices 1 and 2: Where does the text file come from? Is it automatically generated or manually generated? Will it be generated multiple times or just once? If it's manually generated or generated just once, you can use any text editor to change 4 spaces to a tab or to a single space. Note: if you want to change it to a tab delimited file, you can't enter a tab directly into a box in the search & replace dialog of many programs like notepad, but you can do a cut and paste. Before you start your search and replace (just in the text window of the editor), press tab. A tab character will be entered. Press Shift-LeftArrow (not Backspace) to highlight the tab character. Press Ctrl-X to cut the tab character. Start your search and replace (Ctrl-H in notepad in Windows 2000). Click into the Find What box. Enter four spaces. Click into the Replace With box. Press Ctrl-V to paste the tab character. And another thing: older versions of notepad don't have search and replace. Use any editor or word processor that does.

  • I want to use Get Panel Image in Labview 5.0.1 and need details on how to save the BMP data generated

    I am trying to generate an application that saves a copy of its front panel on completion. This is easy to do using an invoke node with Print VI to HTML but this does not work in an .exe format. I have seen elsewhere that you have to use the Get Panel Image method, but no details are supplied in LV 5.0.1 documentation of how to use the "image" data (1-D Unsigned Byte array) that is generated. I want to save this in a format that can then be read as a bitmap in any standard graphics package. Any assistance?

    Hi,
    If you'd upgrade to LV5.1 or 6 you could use the 'standard' vi's for this.
    You need a VI called "Write BMP File.vi". It's not shipped with LV5.0.1.
    This vi only uses 3 subVI's, so perhaps someone at NI can convert it and
    send it to you (sorry, I won't, it's copywrited).
    If you cannot get this VI anywhere, you'll need to figure out the BMP file
    format yourself. It's not too complicated, but still could take some days.
    Perhaps someone figured it out before LV5.1 was released.
    Regards,
    Wiebe.
    "RDK" wrote in message
    news:[email protected]..
    > I want to use Get Panel Image in Labview 5.0.1 and need details on how
    > to save the BMP data generated
    >
    > I am trying to generate an application that saves a copy
    of its front
    > panel on completion. This is easy to do using an invoke node with
    > Print VI to HTML but this does not work in an .exe format. I have seen
    > elsewhere that you have to use the Get Panel Image method, but no
    > details are supplied in LV 5.0.1 documentation of how to use the
    > "image" data (1-D Unsigned Byte array) that is generated. I want to
    > save this in a format that can then be read as a bitmap in any
    > standard graphics package. Any assistance?

  • HT5953 I want to buy an Ebook on the ibooks library and I am to able to find the link to the page.

    I want to buy an Ebook on the ibooks library and I am to able to find the link to the page.

    You may have better luck in the iBooks community. I'll aske the hosts to relocate your post.
    iBooks

  • Good afternoon. I want to buy the program in the app store and will generate an error please contact the itunes support to complet the this transaction Previously everything was OK

    Good afternoon. I want to buy the program in the app store and will generate an error please contact the itunes support to complet the this transaction
    Previously everything was OK

    You're going to have to contact iTunes support, as directed, to fix this issue.

  • I want to export a vcard from contacts but when I do it doesn't give me the next step of saving the file anywhere and if it automatically creates a file, where is it saved?

    i want to export a vcard from contacts but when I do it doesn't give me the next step of saving the file anywhere and if it automatically creates a file, where is it saved?

    its from icloud contacts. I select all and then go to export to a vcard and then nothing happens.

  • How to implement Three Level Sort ?

    I am performing a complex search and get a List of Object. Now, the problem is I have to sort this list in three levels. That is,
    If I have Object like this
    public class A {
    private String id ; // unique for every record
    private String attr1;
    private String attr2;
    private String attr3;
    private String attr4;
    then I have to Sort the List of above type of objects
    First level -attr1 as Asc
    Second level -attr2 as Asc
    third level - attr3 as desc
    Could u suggest some way to implement this.

    I would suggest using the built in Collections framework for sorting.
    have class A implement the Comparable interface then implement the compareTo method as follows:
    public int compareTo(Object o) {
        A a = (A)o;  // <-- may cause ClassCastException if (o instanceof A) != true, but that should not be a problem.
        int value = attr1.compareTo(a.attr1);
        if (value != 0) return value;
        value = attr2.compareTo(a.attr2);
        if (value != 0) return value;
        value = a.attr3.compareTo(attr3);  //Notice I switched a.attr3 and attr3 for desc
        return value;
    }That should do it for you.
    Now put everything into an instance of java.util.List and pass that to java.util.Collections.sort(java.util.List);
    If you didn't create class A, and therefore can't add a method to it, then implement a Comparator. The idea is the same, just look at the java.util.Comparator API and use java.util.Collection.sort(java.util.List, java.util.Comparator) method to sort;

  • The Title Bar and its controls are superimosed on the navigation toolbar

    the Question is it. the overlap prevents me from easily accessing controls on the navigation bar. I don't understand this. I asked this earlier and got dumped because i changed all the files as requested and the problem hasn't gone away. I downloaded and installed Firefox 17 and it is still there! I also upgraded my operating system to mac OS 6.8 with no help at all. I can get you a copy of the start up reading from the console if you want. I've included a screen shot below..... wait.
    I just reverted to the default persona from a musical one - the problem disappeared. Why do I get this when I add personas? Let me try others.... That is the focus of the problem! The personas for some reason exclude some of the toolbars and "shove" the title bar down onto and superimpose it upon the navigation bar. That may not make sense, but that is what it looks like from this end. Curious, though, the drop down options are still in a strange configuration, a different typeface than they were before, which happened when the personas superimposed the title bar on the navigation toolbar. So, obviously I can't use the personas. Is there a way around this, please? there is obviously a conflict somewhere, bit I can't figure it as this is a new development ever since I tried to install a new glims version for Safari and this problem appeared after that. De-installing glims did not eliminate the problem so it obviously changed something in the Firefox configuration files. The guy at glims was mystified, too. Any suggestions?
    thanks.

    Whenever I even mouse over the pesonas in the dropdown tools menu, the title bar at top and the buttons thereupon drop down and superimpose onto the navigation bar just below it. I also have an arial or helvetica font on the right click drop downs where it was gill sans before. Just changing with the mouse-over causes this. And it still happens now that I've upgraded to MAC OS 10.8. New version 17, new MAC OS and this still happens and is not a hardware acceleration issue. I'm stumped.
    What can we do? Do you want me to copy off the Firefox initiation lines from the console log?

  • I have an iPad 2 and want to use video mirroring. I bought a VGA adapter for the iPad, iPhone and iPod so that I could plug the iPad into any monitor, TV, projecter, etc without it being an HD device. I plug it in and it appears the monitor has no communi

    I have an iPad 2 that I want to use with video mirroring to give lectures with. I bought a VGA Adapter for the iPad, iPhone, and iPod as I want to be able to connect with any TV, monitor or projector for lectures, not just an HD device.. After plugging in my iPad to the VGA adapter and then to the video device, it appears that there is no connection with the iPad. Anybody have any thoughts?
    Thanks, Steve

    This article outlines how to use the Apple AV adapter or VGA Adapter to connect your iPhone 4, iPhone 4S, iPad, or iPod touch (4th generation) to an external TV, projector, or display. http://support.apple.com/kb/HT4108
    This explains how to set up AirPlay Mirroring, and how to troubleshoot AirPlay Mirroring issues that may occur between your iPhone, iPad and Apple TV (2nd generation).  http://support.apple.com/kb/TS4085

  • I just installed FF, and I want a SIMPLE way to copy all my bookmarks. Why isn't there a menu item to do this? The need seems OBVIOUS!

    I simply want to make a copy of all of my wife's "Favorites", i.e. your Bookmarks. In FireFox, PrntScrn won't do it, Windows "Snippets" won't do it, and any HELP answers I've seen are hidiously complex. The need/desire to have a paper copy or Word copy of her bookmarks (of course, WITH URL's) seems completely, blatantly obvious. Why all the secrecy? Why isn't there a MENU item to make a copy of the list of Bookmarks??
    And no, I'm not going to try AGAIN, AGAIN, AGAIN to do the Export/HTLM solution, whatever that means. Sheesh. I'm 10 minutes into FireFox and I'm ready to go back to I.E.

    So you are trying to import bookmarks from IE?
    * [[Import Bookmarks from Internet Explorer]]
    Or export to IE?
    * [[Export bookmarks to Internet Explorer]]

  • I had installed Adobe CS5 Master Collection on my PC about a year ago, the PC is now dead and i purchased a mac.  i just wanted to know if i can download the Mac version and use that cereal number to activate the it?  and if yes how and where do i go?  wo

    i had installed Adobe CS5 Master Collection on my PC about a year ago, the PC is now dead and i purchased a mac. 
    i just wanted to know if i can download the Mac version and use that cereal number to activate it?  and if yes how and where do i go?  would appreciate anyones help.  Cheers Ron

    i just wanted to know if i can download the Mac version and use that cereal number to activate it?
    No.
    Serial numbers are Mac only or Windows only. There is a platform swap process (from Mac to PC etc) but only for CS6.
    As a CS5 owner, your choices are to either pay to upgrade to CS6 for Mac or join the Cloud.

  • Edit the top navigation to put Cases under Sales

    Hello,
    In my organization, Sales Leads and Opportunities can lead to Cases.  It would be great to have the Cases screen under the Sales navigation (is under Services by default).
    When I look at the Case entity in the Customizations menu, the "Sales" box is greyed out.
    Has anyone found a workaround for this?
    Thanks.

    See if this helps
    http://blog.allegient.com/blog/changing-those-pesky-tiles-in-the-crm-2013-menu-bar
    Regards, Abhishek Bakshi If you find this post helpful then please Vote as Helpful and Mark As Answer. Check my blog on https://mydynamicscrmblog.wordpress.com/

  • Can an Imaq treshold have three levels 1: don't care then 0 and 1

    I need to set the outter area of my picture to white Don;t care area " equal to 0" then set up my threshold from 1-128 "Red" low treshold then from 129 - 255 equal high treshold "Black".

    I forgot...
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    Double_treshold_3.sit ‏23 KB

  • Multi level BOM explosion in CS11/12/13 Cost of items are not displayed

    Hi,
      I want to display cost of the components in CS11 / CS12 / CS13 T.codes Std SAP will not display the cost of components. for this they have given note 177006 and asked to change some manual correction. In the post processing of the note they have asked put "your_display_profl" This is making me confusing I wanted know whether I want to create a new display pofile using CLVL t.code or can I make the correction as said by SAP "your_display_profl". Could some body guide me in this regard.
    Regards
    Ramana

    >
    Venkata Ramana wrote:
    > Hi,
    >
    >   I want to display cost of the components in CS11 / CS12 / CS13 T.codes Std SAP will not display the cost of components. for this they have given note 177006 and asked to change some manual correction. In the post processing of the note they have asked put "your_display_profl" This is making me confusing I wanted know whether I want to create a new display pofile using CLVL t.code or can I make the correction as said by SAP "your_display_profl". Could some body guide me in this regard.
    >
    > Regards
    >
    > Ramana
    Ramana,
    Which version of SAP you are using, if its below 4.6c, then
    You need to have custom Display and Print Profile defined through CLVL transaction and used in the modification proposed.
    If your version is 4.6c onwards then,
    If you want to use the variable list then you need to have the You need to have custom Display and Print Profile defined through CLVL transaction and used in the modification proposed with IF.
    If you want to use the ABAP ALV based output, then you should not implement the IF... ENDIF query of the suggested modification concerning the user-defined list profile; instead you should set the local L_MBWLS parameter to 'X'
    I hope you need to work with your ABAP person to clearly understand this correction Instruction and Implement as required.
    Regards,
    Prasobh

  • Unexpected error when attempting to view Global Navigation (root site top navigation)

    I am getting an “unexpected error” when attempting to view Navigation settings at the root site of our SharePoint environment.  We are running SharePoint 2013 site collection in SharePoint 2010 compatibility mode.  The error happens when you try
    to view Global (Top-Level) Navigation Settings in our SharePoint root site. 
    (Relative URL:  /_layouts/AreaNavigationSettings.aspx). 
    I copied the exact errors from SP Logs below.  There is some null reference cited.  Where is the root of the problem?   Any information would be helpful!
    First, there is a general “Medium” level event that cites an Application Error
    Time: 
    06/10/2014 11:42:01.96  
    Process: 
    w3wp.exe (0x2538)    
    Thread (Hex): 
    0x1930
    Product: 
    SharePoint Foundation
    Category: 
    General  
    EventID: 
    8nca 
    Level: 
    Medium 
    Correlation: 
    3194999c-3ebd-e089-7f01-acff58324051
    Message: 
    Application error when access /_layouts/AreaNavigationSettings.aspx, Error=Object reference not set to an instance of an object.  
    at Microsoft.SharePoint.Publishing.PublishingPage.GetEffectivePageCacheProfileId(Boolean anonUserProfile)    
    at Microsoft.SharePoint.Publishing.CachedPage..ctor(PublishingPage page, SPListItem altItem, String id, String parentId, CachedUserResource title, String url, CachedUserResource description, CachedObjectFactory factory, List`1& fieldInfo)    
    at Microsoft.SharePoint.Publishing.CachedPage.CreateCachedPage(PublishingPage page, SPListItem altItem, CachedObjectFactory factory, List`1& fieldInfo)    
    at Microsoft.SharePoint.Publishing.CachedListItem.CreateCachedListItem(SPListItem item, SPListItem alternateItem, Boolean parentIsWeb, CachedObjectFactory factory, List`1& fieldInfo)    
    at Microsoft.SharePoint.Publishing.CachedObjectFactory.CreateWrappedObject(SPListItem superUserVersion, SPListItem superReaderVersion, List`1& fieldInfo)    
    at Microsoft.SharePoint.Publishing.CachedArea.GetChildForListByQuery(String listName, SPQuery query, SPWeb contextWeb, Boolean onlyPopulateCache, Boolean skipIfThrottled, List`1& itemsFetched)    
    at Microsoft.SharePoint.Publishing.Navigation.PortalWebSiteMapNode.FetchDynamicItems(PublishingWeb pubWeb, NodeTypes includedTypes, Boolean& websFetched, Boolean& pagesFetched)    
    at Microsoft.SharePoint.Publishing.Navigation.PortalWebSiteMapNode.PopulateNavigationChildrenInner(NodeTypes includedTypes)    
    at Microsoft.SharePoint.Publishing.Navigation.PortalWebSiteMapNode.PopulateNavigationChildren(NodeTypes includedTypes)    
    at Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapNode.GetNavigationChildren(NodeTypes includedTypes, NodeTypes includedHiddenTypes, Boolean trimmingEnabled, OrderingMethod ordering, AutomaticSortingMethod method, Boolean ascending, Int32 lcid)    
    at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.AddChildrenToControl(String parentId, PortalSiteMapNode node, Int32 depth, Int32 maxDepth)    
    at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.InitializeNavigationEditSort()    
    at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.OnLoad(EventArgs e)    
    at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Then, there is the “Unexpected” level event that cites a NullReferenceException
    Time: 6/10/2014 11:42:01.96    
    Process: w3wp.exe (0x2538)
    Thread (Hex): 
    0x1930
    Product: 
    SharePoint Foundation
    Category: Runtime
    EventID: 
    tkau
    Level: 
    Unexpected
    Correlation: 
    3194999c-3ebd-e089-7f01-acff58324051
    Message: 
    System.NullReferenceException: Object reference not set to an instance of an object.   
    at Microsoft.SharePoint.Publishing.PublishingPage.GetEffectivePageCacheProfileId(Boolean anonUserProfile)    
    at Microsoft.SharePoint.Publishing.CachedPage..ctor(PublishingPage page, SPListItem altItem, String id, String parentId, CachedUserResource title, String url, CachedUserResource description, CachedObjectFactory factory, List`1& fieldInfo)    
    at Microsoft.SharePoint.Publishing.CachedPage.CreateCachedPage(PublishingPage page, SPListItem altItem, CachedObjectFactory factory, List`1& fieldInfo)    
    at Microsoft.SharePoint.Publishing.CachedListItem.CreateCachedListItem(SPListItem item, SPListItem alternateItem, Boolean parentIsWeb, CachedObjectFactory factory, List`1& fieldInfo)    
    at Microsoft.SharePoint.Publishing.CachedObjectFactory.CreateWrappedObject(SPListItem superUserVersion, SPListItem superReaderVersion, List`1& fieldInfo)    
    at Microsoft.SharePoint.Publishing.CachedArea.GetChildForListByQuery(String listName, SPQuery query, SPWeb contextWeb, Boolean onlyPopulateCache, Boolean skipIfThrottled, List`1& itemsFetched)    
    at Microsoft.SharePoint.Publishing.Navigation.PortalWebSiteMapNode.FetchDynamicItems(PublishingWeb pubWeb, NodeTypes includedTypes, Boolean& websFetched, Boolean& pagesFetched)    
    at Microsoft.SharePoint.Publishing.Navigation.PortalWebSiteMapNode.PopulateNavigationChildrenInner(NodeTypes includedTypes)    
    at Microsoft.SharePoint.Publishing.Navigation.PortalWebSiteMapNode.PopulateNavigationChildren(NodeTypes includedTypes)    
    at Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapNode.GetNavigationChildren(NodeTypes includedTypes, NodeTypes includedHiddenTypes, Boolean trimmingEnabled, OrderingMethod ordering, AutomaticSortingMethod method, Boolean ascending, Int32 lcid)    
    at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.AddChildrenToControl(String parentId, PortalSiteMapNode node, Int32 depth, Int32 maxDepth)    
    at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.InitializeNavigationEditSort()    
    at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.OnLoad(EventArgs e)    
    at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

    Hi  ,
    According to your description, my understanding is that you encountered the error “Application error when access /_layouts/AreaNavigationSettings.aspx, Error=Object reference not set to an instance of an
    object” when you try to enter Navigation Setting page.
    For your issue , please refer to the blog:
    http://praveenix.wordpress.com/category/uncategorized/
    Thanks,
    Eric
    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]
    Eric Tao
    TechNet Community Support

Maybe you are looking for

  • UWL not getting refreshed automatically

    Hi, We have a requirement, where in the MSS UWL, we dont require all the 4 tabs (Alerts, Tasks, Notification, Tracking) in the worklist. We only want Tasks tab, which is possible through UWl configuration, which we have done. Now we have only 1 tab w

  • JApplet focus in JSP page

    I have an applet embeded in a JSP page. In this applet I have some text feilds for data entry. After the each data entry this field get validated . If the entered data is wrong then it popup a message using the JOptionPane. Now the problem. :- after

  • Mass transfer for asset categories

    Hi, We are implementing FA (on 11i release) in an organization. This organization is divided on 20 cost centers. The requirement is that each cost center have its own balance sheet. Related to FA, I need Asset cost account and Asset expense account t

  • Windows 7 64Bit Crackling

    I have crackling with my xfi in windows 7 64bit this only started happening after upgrading my graphics card from a 7800GS to a GTX 260 The crackling on happens on a couple of games and is constant. Here are my current system specs Asus P5LD2-SE Moth

  • WCS Rogue AP Alarms

    Over the weekend, I moved a bunch of rogue APs into the "Unclassified Rogue AP" group that I felt were not interfering with my network because they were being detected at -80 and above. When I arrived today, I was surprised to find all of those alarm