Links - How to reorder links within a folder. Also, how to make folders open in a tree view?

I'm working on a portal in Sharepoint 2007. It appears that I can only have one set of "Links" on a page, so I am grouping my related links into folders. I'm having two issues with this...
#1. I need to change the order of the links within a folder. When I try to Change Order under the Actions menu, I only get the main list of links, not those within the folder. How can I reorder links within a folder?
#2. When I click a Links folder, all links go away, except for the links within that folder. Is there any way to make the Links list work in a Tree view?
Sorry for the newbie questions, but I've not worked much in Sharepoint and I had this project dropped on me.  :(

Hi,
For Question #1,
refer this link.
Hope it helps!
Thanks,
Avni Bhatt
If this helped you resolve your issue, please mark it Answered

Similar Messages

  • How Can I Shuffle Within a Fold

    I made a few folders and when I try to shuffle the music within one folder, it never works...after a couple songs, it'll pull tracks out of another folder.
    How can I contain shuffling to one folder?

    When I search thru the settings, there's nothing that say Random shuffle...and if there was, how do I know it stays within the one folder? Seems to me "random" and "shuffle" are synonymous and redundant.
    Doesn't ANYONE know how to shuffle songs within one folder?

  • How to import photos from a folder that contains hundreds of folders to Photos keeping the same folder structure?

    How to import photos from a folder that contains hundreds of folders to Photos keeping the same folder structure?

    You'll have to do that manually, i.e. export each album of photos to a folder with the same name located on your hard drive via  the File ➙ Export ➙ File Export menu option.
    OT

  • How to make 'always open in ... view' check box actually work?

    What I need is a "Make 'Always open in ... view' check box work" check box.
    Specifically:
    I double click on my hard drive icon to open its window. I press command 3 to make it display in column view. I press command J and check "Always open in column view" and check the further check box, "Browse in column view". Then later on having viewed various windows I double click on the hard drive icon and it opens in some other view than column view. So, how to make the check box do what it actually says it will do?
    Thanks.
    edit: In fact in Panther, and probably other older OS X's, all folders would generally remember (I think) how it was last viewed and use that again. How to make that happen? Thanks.

    Hi,
    For Question #1,
    refer this link.
    Hope it helps!
    Thanks,
    Avni Bhatt
    If this helped you resolve your issue, please mark it Answered

  • How do you delete photo's and also how do you search in your phone for apps/anything using the latest software

    how do you delete photo's and also how do you search your phonefor apps / anything ???
    i am using the latest software update
    many thanx to all in advance

    Anywhere on a home page swipe down (not from the very top or you'll get the Notification Center) to launch Spotlight.

  • How to make folders stay collapsed in list view in finder?

    could someone please tell me if there is a way to make folders stay collapsed next time you open that particular folder (like they used to in tiger)
    let me explain this in more detail
    back in tiger, when you were in list mode, when you press right arrow on a folder it was expanding its contents, but the next time you open that folder those folders were collapsed, whereas in leopard it remembers the folders you expanded and they stay expanded forever (or until you collapse them all again manually)
    i think its a lot more logical for them to stay collapsed next time you're opening that folder because if you have a lot of subfolders and they're all expanded when you open the folder next time its huge, the side scroller bar is tiny and its very difficult to find your stuff
    if someone has a solution for this it would be greatly appreciated
    thank you very much

    thanks for your reply
    actually CMD+A & CMD+left arrow only collapses the folders of the folder youre in, and not all the levels of subfolders that youve opened
    if i could do CMD+A & CMD+left arrow to collapse all the levels of expanded subfolders that would be fine but imagine how much time it would take to locate everything that youve expanded and collapse it manually if you have about 10 levels of subfolders?
    i find this incredibly frustrating, has anyone else got any suggestions?

  • How to reorder images within an event

    I would like to reorder images in an event which will produce a slide show in the order I desire. Highlight an image and dragging it does not work for me.

    Create an album and put the photos from the Event into it. Then you can manually sort the photos into the order you want before creating the slideshow from the album with the Create button in the toolbar:
    Click to view full size

  • How to make button to format a HardDrive or USB, How to remove all files from folder, and How to delete a process in listbox with a textbox?

    Hello!
    Here's the question with explaniation: How can i format the USB or Drive by clicking a button what's meant for it?
    and the second question what's also in vb.net: How can i remove all files from folder ? 
     Here's the Look of program: *
    Using the PC button, it will delete the free space of the PC, do you guys/girls know where it's location?

    Example Code:
    Imports System.Runtime.InteropServices
    Imports System.IO
    Public Class Form1
    Dim CBoxDrives As New ComboBox
    WithEvents FButton As New Button
    <DllImport("shell32.dll")> _
    Private Shared Function SHFormatDrive(ByVal hwnd As IntPtr, ByVal drive As UInteger, _
    ByVal fmtID As UInteger, ByVal options As UInteger) As ULong
    End Function
    Private Enum SHFormatFlags As Integer
    SHFMT_ID_DEFAULT = &HFFFF
    SHFMT_OPT_FULL = &H1
    SHFMT_OPT_SYSONLY = &H2
    SHFMT_ERROR = &HFFFFFFFF
    SHFMT_CANCEL = &HFFFFFFFE
    SHFMT_NOFORMAT = &HFFFFFFD
    SHFD_FORMAT_FULL = 0 ' full format
    SHFD_FORMAT_QUICK = 1 ' quick format
    End Enum
    Private Sub FButton_Click_1(sender As System.Object, e As System.EventArgs) Handles FButton.Click
    If CBoxDrives.Text = "" Then
    MsgBox("No Drive Selected")
    Exit Sub
    End If
    Dim Iresult As ULong = SHFormatDrive(CType(Me.Handle.ToInt32, IntPtr), CUInt(Asc(CBoxDrives.Text.Substring(0, 1)) - Asc("A")), CUInt(SHFormatFlags.SHFMT_ID_DEFAULT), 1)
    End Sub
    Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
    Me.Size = New Size(200, 100)
    With FButton
    .Size = New Size(50, 25)
    .Location = New Point(5, 5)
    .Text = "Format"
    End With
    Me.Controls.Add(FButton)
    With CBoxDrives
    .Size = New Size(50, 25)
    .Location = New Point(75, 5)
    .DropDownStyle = ComboBoxStyle.DropDown
    End With
    Me.Controls.Add(CBoxDrives)
    Dim DrivesFound As Integer = 0
    Dim allDrives() As DriveInfo = DriveInfo.GetDrives()
    Dim d As DriveInfo
    For Each d In allDrives
    If ((d.DriveType = DriveType.Fixed) Or (d.DriveType = DriveType.Removable)) AndAlso Environment.GetEnvironmentVariable("SYSTEMROOT").StartsWith(d.Name) = False Then
    CBoxDrives.Items.Add(d.Name)
    DrivesFound += 1
    End If
    Next
    CBoxDrives.SelectedIndex = DrivesFound - 1
    End Sub
    End Class

  • How to create an association in folder options panel in order to open an e mail

    when trying to open attachment, it tells me that this file does not have a program associated with it to perform this action.
    I have to create an association in folder options panel.
    how do i do that?

    See this: <br />
    http://support.mozilla.com/en-US/kb/Managing+file+types

  • How do I hide the parent folder of the user home folders in File Sharing?

    In 10.6 Server I would set the parent folder so that "Everyone" could not list folder contents, then set "Everyone else" read only.  This prevented the parent folder from showing up in the list of available Share Points and allowing users to see the list of home directories.
    In 10.8, this trick no longer seems to work.  No matter what I set the ACLs to, the folder always shows up as a share point in the connection window.  2014 is the folder I've set for the Home directories of our network users (and there will be 2 more for graduating years.)  I can set the ACL so if they attempt to mount it, it just spits out an error saying they can't view the contents, but that isn't reasonable.  I don't want it to show up at all.  The only thing the students should see is their home folder.  Nothing else.
    What can I do to make it so 2014 doesn't show up in the connection window?  2014 is the parent folder for the home directories, so it can't be unshared.

    This prevented the parent folder from showing up in the list of available Share Points and allowing users to see the list of home directories.
    That second sentence should read:
    This prevented the child folder (parent folder to the home directories) from showing up in the list of available Share Points and allowing users to see the list of home directories.

  • HT4623 With the new software update on the iphone, how do I delete a photo and also how do I close open apps so I dont wear battery down

    With the new update for iphone, how do I delete a photo and how do I close open apps.  There used to be a delete button to delete a photo and I used to double click on the main phone button and then click on the x to close an app.

    Wipe the drive using DiskUtility and download and reinstall Yosemite and set it up as a new Mac. Then purchase the Apps you require with your own Apple ID which you will enter when setting up the new Mac.
    Cheers
    Pete

  • How can I do a search within a folder on desktop

    I have a folder (on the desktop) that I want to do a search within the folder only.How do I limit the search to just the folder without everything on the HD showing.
    Thanks
    Greg

    Care to share which OS you are using?
    Command + F usually does the trick.

  • Can you manually move files within a folder to put them in a specific order?

    I am new to mac, I was wondering if there is an app maybe that you could move files within a folder (ie photos) to make them in a specific order and then rename them, I used to be able to do this with my windows xp..... cant seem to make it happen with my new macbook pro and from what i can gather it cant be done? can it? Thanx in advance.........

    Thomas, I have set the view to maunally but when i move the icons they return to where they were sitting..?
    In the Finder? You probably have a sort selected in the Sort By submenu in the View menu. However, the order of icons in icon view won't have any influence on the order of the images in the slideshow, I think. Use iPhoto, this is one of the things it's made for, the Finder is not.

  • How to blick tree view few specific nodes

    here i got a code which show how to blink tree view node but i am confuse that how to blink few node.
    Answered by:
    Avatar of Tamer Oz
    20,185
    Points
    Top 0.5
    Tamer Oz
    Partner Joined Sep 2009
    2
    8
    17
    Tamer Oz's threads
    Show activity
    Treeview control - How to make a node blink?
    Visual Studio Languages
    .NET Framework
    >
    Visual C#
    Question
    Alert me
    Question
    Vote as helpful
    0
    Vote
    Hi,
    Is there a "elegant" way to make blink a treeview node?
    I am thinking to use a timer with the collection of nodes that I want to make the blink effect, and update the icon ...
    Friday, November 06, 2009 6:19 PM
    Reply
    |
    Quote
    |
    Report as abuse
    Avatar of Kikeman
    Kikeman
    R. BOSCH
    105 Points
    All replies
    Question
    Vote as helpful
    0
    Vote
    Hi,
    You can develop your custom control for this purpose. The logic you mentioned was correct. Here is a sample control that I developed by the logic you mentioned.
    public class BlinkingTreeView : TreeView
    private Timer t = new Timer();
    private List<TreeNode> blinkingNodes = new List<TreeNode>();
    public BlinkingTreeView()
    t.Interval = 1000;
    t.Tick += new EventHandler(t_Tick);
    bool isNodeBlinked = false;
    void t_Tick(object sender, EventArgs e)
    foreach (TreeNode tn in blinkingNodes)
    if (isNodeBlinked)
    //update Icon
    tn.Text = tn.Text.Substring(0, tn.Text.Length - 1);//to test
    isNodeBlinked = false;
    else
    //update Icon
    tn.Text = tn.Text + "*";//to test
    isNodeBlinked = true;
    public void AddBlinkNode(TreeNode n)
    blinkingNodes.Add(n);
    public void RemoveBlinkNode(TreeNode n)
    blinkingNodes.Remove(n);
    public void ClearBlinkNodes()
    blinkingNodes.Clear();
    public List<TreeNode> BlinkingNodes
    get { return blinkingNodes; }
    public int BlinkInterval
    get { return t.Interval; }
    set { t.Interval = value; }
    public void StartBlinking()
    isNodeBlinked = false;
    t.Enabled = true;
    public void StopBlinking()
    t.Enabled = false;
    just show me how to use BlinkingTreeView class. i will have tree view which will have few node and few nodes may have few child nodes. now how to achieve by this class BlinkingTreeView and show me how to blink few specific node not all. thanks

    better to come with code. first populate tree view with some dummy node this way
    Root
           Child1
                    Child1-sub1
                    Child1-sub2
           Child2
                    Child2-sub1
                    Child2-sub2
    now blink Child1-sub2 & Child2-sub1. please come with code. thanks

  • How can I make tree view for hierarchical data from select with connect by?

    If we have selected hierachy with connect by clause, how can we make it to see in tree view?

    You can't do this using the ADF, Tree Binding used by JHeadstart.
    However, If you have a recursive relationship (for example managerid) you can get a tree what you want as follows:
    - create one root ViewObject that returns the top-level employees without a manager by setting the where clause to managerid=null
    - create a second ViewObject that simply queries all employees
    - Create a ViewLink between the two view objects, and create a nested VO usage in the app module for the second view object
    - Create corresponding nested group in the application definition file and set the layout style to "tree-form" on both groups.
    See Developers Guide, chapter 3, section recursive trees for more info.
    Steven Davelaar,
    JHeadstart Team.

Maybe you are looking for