New tree view for attachments

Hello,
I am currently trying to figure out how I can add acustom tree view for attachments to the account overview page. Per defualt it has the standard list for attachments, but I need to replace that with a component where I can "fake" the attachments that are displayed, and which comes in tree view mode as default. The last I think will be pretty easy, but during debugging, I have not yet figured out how the component GS_CM gets its data, so that I can modify it or feed it new data (to documents that do exist in the system, but have no direct link to the account).
Anybody with any knowledge of this? Thanks!
Thomas

Hello,
I am currently trying to figure out how I can add acustom tree view for attachments to the account overview page. Per defualt it has the standard list for attachments, but I need to replace that with a component where I can "fake" the attachments that are displayed, and which comes in tree view mode as default. The last I think will be pretty easy, but during debugging, I have not yet figured out how the component GS_CM gets its data, so that I can modify it or feed it new data (to documents that do exist in the system, but have no direct link to the account).
Anybody with any knowledge of this? Thanks!
Thomas

Similar Messages

  • Tree view for the menu

    Hi
    I am trying to provide a tree view for a list of menu. When i was exploring, I came to know about a tag which uses as below.
    <%@ taglib uri="http://java.sun.com/jsf/demo/components" prefix="d" %>What jar file should I include in my lib? Is it possible to have tree menu with that? please let me know.

    Thanks for your response. Yes when i saw the web site, I am close to what I want. But I couldn't find many examples to proceed further. May be a silly question. I jsut copied the following code into my test.jsp file and when I run a file, I get a blank page.
    <risb:menuBar width="473px"> 
        <risb:menuItem id="jsfsites" value="JSF Sites"> 
            <risb:menuItem value="JSF RI Homepage" url="https://javaserverfaces.dev.java.net" /> 
            <risb:menuItem value="Glassfish" url="https://glassfish.dev.java.net" /> 
            <risb:menuItem id="subprojects" value="Sub Projects"> 
                <risb:menuItem value="JSFTemplating" url="https://jsftemplating.dev.java.net" /> 
                <risb:menuItem value="Facelets" url="https://facelets.dev.java.net" /> 
            </risb:menuItem> 
        </risb:menuItem> 
        <risb:menuItem id="devblogs" value="Developer Blogs"> 
            <risb:menuItem value="Ed Burns' Blog" url="http://weblogs.java.net/blog/edburns/" /> 
            <risb:menuItem value="Roger Kitain's Blog" url="http://weblogs.java.net/blog/rogerk/" /> 
            <risb:menuItem value="Ryan Lubke's Blog" url="http://blogs.sun.com/rlubke/" /> 
            <risb:menuItem value="Jacob Hookom's Blog #1" url="http://weblogs.java.net/blog/jhook/" /> 
            <risb:menuItem value="Jacob Hookom's Blog #2" url="http://hookom.blogspot.com" /> 
            <risb:menuItem value="Jason Lee's Blog" url="http://blogs.steeplesoft.com/javaserver-faces" /> 
        </risb:menuItem> 
    </risb:menuBar>  When i view the page source, I see it as below:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
             "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
             xmlns:f="http://java.sun.com/jsf/core"
             xmlns:ui="http://java.sun.com/jsf/facelets"
             xmlns:h="http://java.sun.com/jsf/html"
             xmlns:b="http://bethanyefree.org/jsf/facelets"
             xmlns:t="http://myfaces.apache.org/tomahawk"
             xmlns:c="http://java.sun.com/jsp/jstl/core"
             xmlns:jdt="http://www.jenia.org/jsf/dataTools"
             xmlns:s="http://myfaces.apache.org/sandbox"
             xmlns:jsfcomp="http://sf.net.jsfcomp.validator">
    <risb:tree id="foo"> 
        <risb:treeNode> 
            <f:facet name="label"><h:outputText value="Test 1"/></f:facet> 
            <risb:treeNode> 
                <f:facet name="label"><h:outputText value="Test 1-1"/></f:facet> 
                <risb:treeNode> 
                    <f:facet name="label"><h:outputText value="Test 1-1-1"/></f:facet> 
                </risb:treeNode> 
                <risb:treeNode> 
                    <f:facet name="label"><h:outputText value="Test 1-1-2"/></f:facet> 
                </risb:treeNode> 
                <risb:treeNode> 
                    <f:facet name="label"><h:outputText value="A test with one of these: '"/></f:facet> 
                </risb:treeNode> 
            </risb:treeNode> 
        </risb:treeNode> 
        <risb:treeNode> 
            <f:facet name="label"><h:outputText value="Test 2"/></f:facet> 
            <risb:treeNode> 
                <f:facet name="label"> 
                    <h:outputLink value="http://blogs.steeplesoft.com"> 
                        <h:graphicImage id="image" url="/download.jpg" /> 
                    </h:outputLink> 
                </f:facet> 
            </risb:treeNode> 
        </risb:treeNode> 
    </risb:tree>I must be missing some jar files and some including some tag directory. Could you please tell me whether I am going in a correct direction. Thnaks.

  • How to have a tree view for value node..

    Hi all,
    I need to display a tree view for a value node in web ui  just like a model node, for a custom view in a pop up. Please guide me  how to do this or let me know the process steps.
    Thanks in advance.

    Hi All,
    while debugging I found that in class CL_BSP_WD_CONTEXT_NODE_TREE , the method GET_T_TABLE the below code is not triigerring for the child node attributes ( to trigger the get method of attribute for value node).
    this call method is not triggering at all only for first coulmn its triggering ..
      LV_TN ?= ME->NODE_MAPPER->GET_NODE_OBJECT( <LINE>-NODE_KEY ).
        CONCATENATE 'GET_' COMPONENT INTO LV_METHOD.
        TRY.
            CALL METHOD LV_TN->(LV_METHOD)
              EXPORTING
                ATTRIBUTE_PATH = ''
              RECEIVING
                VALUE          = VALUE.
          CATCH CX_ROOT INTO LV_ERROR.
    I created the GETTER method inthe class CN01 and CN02. But those methods are not triggered in CALL METHOD LV_TN->(LV_METHOD). Even that class CN02 is having the  same methods. Those methods are already Implemented. May I know what was the reason Why those methods are not triggered ( getter method ). With out that Method data will not display in the Tree view. Can anybody tell me the reason why it is not happenning?
    .Please find the below .HTM code  as well.
    <chtmlb:configTree
                          actionsMaxInRow       = "5"
                       id             = "Table1"
                       nodeTable      = "<%= ZTREEVIEW->node_tab %>"
                       table          = "//ZTREEVIEW/Table"
                       noFrame        = "FALSE"
                       personalizable = "TRUE"
                       onCollapseNode = "NODECOLLAPSE"
                       selectionMode  = "MULTILINEEDIT"
                       onExpandNode   = "NODEEXPAND"
                       onRowSelection = "select" />
    Only one column was triggered another column did not get any value becasue of the above method call fail.. We are not restricted anywhere to display one column value in the output.   Even in Debugging I checked that LV_METHOD  is having the method name. CN02 class is also having the  same method, But it is not going into the method. It is coming out side. What could be  the reason I could not able to understnad.
    Please provide me some pointers on the issue....
    Thanks in advance..

  • Ho to create tree view for SitePages ?

    Hi ,
    I want to create a tree view navigation menu for Site pages. Lets consider following scenario
    +Folder1
    - SitePage1 
    - SitePage2
    - SitePage3
    +Folder2
    - SitePage1 
    - SitePage2
    - SitePage3
    Please let me know how can i achieve this functionality by With or without using Visual web part.
    Thanks, 
    C Mahone

    Hi,
      According to my understanding you want to achive this navigation in sitecontent pannel on left side of the page,
    If this is where you want to achive you can simply click on edit links in the bottom  and provide your navigation.

  • 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.

  • How to add new source views for Bill Presentment Architecture (BPA)?

    Hi,
    Financials 11.5.10.2;
    I'm trying to add custom source views to be used with BPA.
    I go to configuration\data sources and click on the views buttons to see the available views.
    There I click on the register button. If I use the LOV button for view name, no views are available. I thought I would see the view in the APPS schema.
    How do I make my custom views available in the list of values?
    Thanks.

    It was easy for us. The guide suggests your view begin with the string "ARBPA". One might assume that if your view doesn't start with this, it won't be available from the list.

  • FI substitution rule for Business area  on New GL view(FAGLFLEXA)

    Hi Gurus,
    Need a your expertise guidance.
    We have a requirement to substitute u2018Business areau2019 field on GL view(table u2013 FAGLFLEXA) for all FI postings.. I am trying to achieve this by OBBH substitution rule using user exit, Is this possible anyway??
    I have already worked with my developer, but he is not getting any clue to write a logic in the user exits available in OBBH.. can anyone please guide us..
    Actual requirement is to update u2018Business areau2019 field on all FI postings at new GL view for some of the company codes (not all), I am not sure if we can achieve it by activating document splitting by business area field.. we have document splitting active already by profit center and segmentu2026
    Please guide me..
    Many thanks in advance..
    Prasad

    HI pampana,
    If you add the Business area is document splitting char's  with Mandatory check box
    then reach and very line will update the business area value in Doc splitting.
    But you allready have profit center as a doc splitting char's
    If you want to Business area is new doc splitting char's then you need
    go for NewGL migration.
    Please refer the NewGL migration scenario 6, 7 for your case.
    please check the link
    http://wiki.sdn.sap.com/wiki/x/JghNCw    (NewGL Migration Secnarios)
    Regards
    Madhu M

  • How to hide a list from SharePoint tree view pro grammatically.

    Hi,
    I have enabled tree view for a SharePoint 2013 site pro grammatically. 
    I want hide some specific lists from that tree view like Documents, Workflow, Task List, Calender
    Lists which are created default when we create a site.
    How could i do that?

    I know how to hide Quick launch and Enable Tree view with properties in C#.
    My question is 
    hide some specific lists from that tree view like Documents,
    Workflow, Task List, Calender
    Lists which are created default when we create a site.

  • Creating 'Z' views for Standard ABAP Web dynpro Application

    Hi Experts,
    I am totaly new to ABAP web dynpro objects.
    In our project there were some client requirements which required us to change the properties of the Views related to the Webdynpro. The Client now has said that he needs to apply some  enhancement pathces on his system. Due to this, the changes made to the Views i.e all the changes done in standard code are  lost.
    The client now wants a long term solution where all the changes need to be done in 'Z' implimentataion so that changes are not lost every time the pathces are applied.
    Is it possible to create an entire new 'Z' Views for the standard Webdynpro instead of standrad ones?
    If Yes how does one link them to the Webdynpro application ?

    Hi
    Have a look at following article about enhancing webdynpro applications.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/700317da-bd79-2c10-368e-8f18bf5d8b81?quicklink=index&overridelayout=true
    Regards
    Manas Dua

  • BAPI to create Purchse View for Article

    Hi,
    I have created article using MM41 and maintained BASIC DATA and ADDITIONAL BASICDATA for it. I have to now maintain PURCHASE VIEW for that article.
    I am using FM WRF_MATERIAL_MAINTAINDATA_RT to create purchase view.
    I am passing data to two structure  INFORECORD_GENERAL STRUCTURE  BAPIEINA
                                                             INFORECORD_PURCHORG STRUCTURE  WRFBAPIEINE
    that holds purchase view data.
    BAPI returns telling article is changed. but if i go check in MM43 it is not changed.
    BAPI works fine if i try to modify any data except for the above.
    Can any one suggest me how to tackle this or is there any other way to create new purchse view for existing article.
    Vanitha P

    >
    Vanitha P wrote:
    > Hi,
    >
    > I have created article using MM41 and maintained BASIC DATA and ADDITIONAL BASICDATA for it. I have to now maintain PURCHASE VIEW for that article.
    >
    > I am using FM WRF_MATERIAL_MAINTAINDATA_RT to create purchase view.
    >
    > I am passing data to two structure  INFORECORD_GENERAL STRUCTURE  BAPIEINA
    >                                                          INFORECORD_PURCHORG STRUCTURE  WRFBAPIEINE
    > that holds purchase view data.
    >
    > BAPI returns telling article is changed. but if i go check in MM43 it is not changed.
    >
    >
    > BAPI works fine if i try to modify any data except for the above.
    >
    > Can any one suggest me how to tackle this or is there any other way to create new purchse view for existing article.
    >
    >
    >
    > Vanitha P
    Here a simple example code for upload Material data:
    *&      Form  call_bapi
    *       text
    FORM call_bapi USING is_head  TYPE bapimathead
                         is_mara  TYPE bapi_mara
                         is_marax TYPE bapi_marax
                         is_marc  TYPE bapi_marc
                         is_marcx TYPE bapi_marcx
                         is_mbew  TYPE bapi_mbew
                         is_mbewx TYPE bapi_mbewx
                         is_mvke  TYPE bapi_mvke
                         is_mvkex TYPE bapi_mvkex
                         is_mlan  type bapi_mlan.
      Data: lt_mlan type table of bapi_mlan.
      Append is_mlan to lt_mlan.
      CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
        EXPORTING
          headdata                   = ls_head
          clientdata                 = ls_mara
          clientdatax                = ls_marax
          plantdata                  = ls_marc
          plantdatax                 = ls_marcx
    *   FORECASTPARAMETERS         =
    *   FORECASTPARAMETERSX        =
    *   PLANNINGDATA               =
    *   PLANNINGDATAX              =
    *   STORAGELOCATIONDATA        =
    *   STORAGELOCATIONDATAX       =
          valuationdata              = ls_mbew
          valuationdatax             = ls_mbewx
    *   WAREHOUSENUMBERDATA        =
    *   WAREHOUSENUMBERDATAX       =
         salesdata                  = is_mvke
         salesdatax                 = is_mvkex
    *   STORAGETYPEDATA            =
    *   STORAGETYPEDATAX           =
    *   FLAG_ONLINE                = ' '
    *   FLAG_CAD_CALL              = ' '
    *   NO_DEQUEUE                 = ' '
    *   NO_ROLLBACK_WORK           = ' '
        IMPORTING
          return                     = gs_return
        TABLES
          materialdescription        = gt_makt
    *      unitsofmeasure             = gt_uom
    *      unitsofmeasurex            = gt_uomx
          internationalartnos        = gt_mean
    *   MATERIALLONGTEXT           =
          TAXCLASSIFICATIONS         = lt_mlan
    *   RETURNMESSAGES             =
    *   PRTDATA                    =
    *   PRTDATAX                   =
    *   EXTENSIONIN                =
    *   EXTENSIONINX               =
    *  READ TABLE gt_return INTO gs_return WITH KEY type = gc_return_s.
    *  IF sy-subrc = 0.
      IF gs_return-type EQ gc_return_s.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    *     EXPORTING
    *       WAIT          =
    *     IMPORTING
    *       RETURN        =
      ELSE.
        WRITE: /.
        WRITE: ls_mara-old_mat_no, gs_return-type,
                  '   ', gs_return-message(50).
      ENDIF.
      CLEAR gs_return.
    ENDFORM.                    "call_bapi

  • Workflow tree view issue.

    Hi,
    In workflow management screen i can see tree view of my entity dimension when i loged in with an admin account, but other users can only see flat list of entities. Is there a way to make it possible to see entities in tree view for other users as well? It doesn't matter for most of the users because they have access for only some of the entities but it's really frustrating for those who have access to most of the entities (we have 1200 entities).
    Thanks in advance.

    Hi,
    I believe it is just administrators that can view it in tree mode, unless somebody knows any different.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Build XML for Custom Nested Accordian (like Tree View Structure) for SharePoint List Data

    Expected output in Xml:
    <?xml version="1.0" encoding="utf-8" ?>
    - <TopRoot>
    - <Root id="1" Name="Department">
    - <Type id="2" Name="IT">
    - <SubType id="3" Name="Technology">
      <SubSubType id="4" Name="Sharepoint" />
      <SubSubType id="5" Name="ASP.NET" />
      <SubSubType id="6" Name="HTML 5" />
      </SubType>
      </Type>
    </Root>
    </TopRoot>
    List Details:
    list details for storing category / sub category data and code to build tree structure for the same.
    1.Create Custom List named “CategoryDetails”:
    2.Create Column “Category Name” of type single line of text. Make it as required field and check Yes for Enforce Unique values.
    3.Create column “Parent Category” of type lookup. under Additional Column Settings.
    Get information dropdown, select “CategoryDetails”.
    4.Choice column ["SRTypeName"] 1.Root,2.SRTYPE,3.SubSRTYPE, 4.SUBSUBSRTYPE
    In this column dropdown, select “Category Name”:  
    Referance:
    http://www.codeproject.com/Tips/627580/Build-Tree-View-Structure-for-SharePoint-List-Data    -fine but don't want tree view just generate xml string
    i just follwed above link it work perferfectly fine for building tree view but i don't want server control.
    Expected Result:
    My ultimate goal is to generate xml string like above format without building tree view.
    I want to generate xml using web service and using xml i could convert into nested Tree View Accordian in html.
    I developed some code but its not working to generate xml /string.
    My modified Code:
    public const string DYNAMIC_CAML_QUERY =
            "<Where><IsNull><FieldRef Name='{0}' /></IsNull></Where>";
            public const string DYNAMIC_CAML_QUERY_GET_CHILD_NODE =
            "<Where><Eq><FieldRef Name='{0}' /><Value Type='LookupMulti'>{1}</Value></Eq></Where>";
            protected void Page_Load(object sender, EventArgs e)
                if (!Page.IsPostBack)
                 string TreeViewStr= BuildTree();
                 Literal1.Text = TreeViewStr;
            StringBuilder sbRoot= new StringBuilder();
            protected string BuildTree()
                SPList TasksList;
                SPQuery objSPQuery;
                StringBuilder Query = new StringBuilder();
                SPListItemCollection objItems;
                string DisplayColumn = string.Empty;
                string Title = string.Empty;
                string[] valueArray = null;
                try
                    using (SPSite site = new SPSite(SPContext.Current.Web.Url))
                        using (SPWeb web = site.OpenWeb())
                            TasksList = SPContext.Current.Web.Lists["Service"];
                            if (TasksList != null)
                                objSPQuery = new SPQuery();
                                Query.Append(String.Format(DYNAMIC_CAML_QUERY, "Parent_x0020_Service_x0020_Id"));
                                objSPQuery.Query = Query.ToString();
                                objItems = TasksList.GetItems(objSPQuery);
                                if (objItems != null && objItems.Count > 0)
                                    foreach (SPListItem objItem in objItems)
                                        DisplayColumn = Convert.ToString(objItem["Title"]);
                                        Title = Convert.ToString(objItem["Title"]);
                                        int rootId=objItem["ID"].ToString();
                                        sbRoot.Append("<Root id="+rootId+"
    Name="+Title+">");
                                        string SRAndSUBSRTpe = CreateTree(Title, valueArray,
    null, DisplayColumn, objItem["ID"].ToString());
                                        sbRoot.Append(SRAndSUBSRTpe);
                                        SRType.Clear();//make SRType Empty
                                        strhtml.Clear();
                                    SRType.Append("</Root>");
                catch (Exception ex)
                    throw ex;
                return SRType.ToString();
             StringBuilder strhtml = new StringBuilder();
            private string CreateTree(string RootNode, string[] valueArray,
          List<SPListItem> objNodeCollection, string DisplayValue, string KeyValue)
                try
                    strhtml.Appends(GetSRType(KeyValue, valueArray, objNodeCollection);
                catch (Exception ex)
                    throw ex;
                return strhtml;
            StringBuilder SRType = new StringBuilder();
            private string GetSRType(string RootNode,
            string[] valueArray, List<SPListItem> objListItemColn)
                SPQuery objSPQuery;
                SPListItemCollection objItems = null;
                List<SPListItem> objNodeListItems = new List<SPListItem>();
                objSPQuery = new SPQuery();
                string objNodeTitle = string.Empty;
                string objLookupColumn = string.Empty;
                StringBuilder Query = new StringBuilder();
                SPList objTaskList;
                SPField spField;
                string objKeyColumn;
                string SrTypeCategory;
                try
                    objTaskList = SPContext.Current.Web.Lists["Service"];
                    objLookupColumn = "Parent_x0020_Service_x0020_Id";//objTreeViewControlField.ParentLookup;
                    Query.Append(String.Format
                    (DYNAMIC_CAML_QUERY_GET_CHILD_NODE, objLookupColumn, RootNode));
                    objSPQuery.Query = Query.ToString();
                    objItems = objTaskList.GetItems(objSPQuery);
                    foreach (SPListItem objItem in objItems)
                        objNodeListItems.Add(objItem);
                    if (objNodeListItems != null && objNodeListItems.Count > 0)
                        foreach (SPListItem objItem in objNodeListItems)
                            RootNode = Convert.ToString(objItem["Title"]);
                            objKeyColumn = Convert.ToString(objItem["ID"]);
                            objNodeTitle = Convert.ToString(objItem["Title"]);
                            SrTypeCategory= Convert.ToString(objItem["SRTypeName"]);
                           if(SrTypeCategory =="SRtYpe")
                              SRType.Append("<Type  id="+objKeyColumn+" Name="+RootNode+ ">");
                             if (!String.IsNullOrEmpty(objNodeTitle))
                              SRType.Append(GetSRType(objKeyColumn, valueArray, objListItemColn));
                          if(SrTypeCategory =="SRSubTYpe")
                              SRType.Append("<SRSubType  id="+objKeyColumn+" Name="+RootNode+
    ">");  
                             if (!String.IsNullOrEmpty(objNodeTitle))
                              SRType.Append(GetSRType(objKeyColumn, valueArray, objListItemColn));
                          if(SrTypeCategory =="SubSubTYpe")
                              SRType.Append("<SubSubType  id="+objKeyColumn+" Name="+RootNode +"
    ></SubSubType");  
                        SRType.Append("</SubType>");
                        SRType.Append("</Type>");
                catch (Exception ex)
                    throw ex;
                return SRType.ToString();
                // Call method again (recursion) to get the child items

    Hi,
    According to your post, my understanding is that you want to custom action for context menu in "Site Content and Structure" in SharePoint 2010.
    In "SiteManager.aspx", SharePoint use MenuItemTemplate class which represent a control that creates an item in a drop-down menu.
    For example, to create or delete the ECB menu for a list item in
    "Site Content and Structure", we can follow the steps below:
    To add the “My Like” menu, we can add the code below:      
    <SharePoint:MenuItemTemplate
    UseShortId=false
    id="OLListItemLike"
    runat="server"
    Text="My Like"
    ImageUrl="/_layouts/images/DelItem.gif"
    ClientOnClickNavigateUrl="https://www.google.com.hk/"
    />
    To remove the “Delete” menu, we can comment the code below:
    <SharePoint:MenuItemTemplate
    UseShortId=false
    id="OLListItemDelete"
    runat="server"
    Text="<%$Resources:cms,SmtDelete%>"
    ImageUrl="/_layouts/images/DelItem.gif"
    ClientOnClickScript="%SmtObjectDeleteScript%"
    />            
    The result is as below:
    More information:
    MenuItemTemplate Class (Microsoft.SharePoint.WebControls)
    MenuItemTemplate.ClientOnClickScript property (Microsoft.SharePoint.WebControls)
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Trees in Plan View for Illustrator - Vector Graphics

    Does anyone have any idea as to where get good trees drawn for Illustrator in Plan View?

    Brooke...
    You're in the wrong area of the forum to be asking your question.
    This area is specifically for suggesting new features for the Illustrator application itself.
    Head up one level to the Main Illustrator forum and start a new thread with your question.
    Thanks.

  • Metadata Navigation Tree View in Quick Launch for Wiki Site

    I have successfully enabled managed metadata navigation for an Enterprise Wiki Site. When new pages are created they get created in the term set and I have have organised them into a hierarchy that I want.
    I would really like the quick launch to show a tree view of that managed metadata navigation hierarchy.
    How could I achieve this? Would this require a completely custom SiteMapProvider along with some jQuery or similar to render the tree view?
    Alternatively I am happy only showing a few levels of hierarchy with the OOTB quick launch, but I need to show the parent node for any given page I am on, to assist users navigating backup up. What control could I add just above the quick launch to show
    the parent node?
    Thanks for any help,
    Richard

    Hi Richard, 
    as i know there are some example at 2010, 
    http://markuspersson.wordpress.com/2012/01/19/add-metadata-navigation-on-custom-page-layouts/
    http://tihomirignatov.blogspot.com/2010/08/how-to-use-metadata-navigation-in.html
    perhaps you already tried some of the example?
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Ios 5 Update New Features says that iCal now has a week view for iPhone but after updating last weekend, I don't see any week view--just List, Day and Month..How do I get the week view?

    ios 5 Update New Features says that calendar now has a week view but after updating my iPhone 4 last weekend, I don't see any week view for iCal--just List, Day and Month as in the past. Is the weekly view available for iCal and if so, how do I access it?

    Rotate your phone to landscape.

Maybe you are looking for

  • Issue with installing password sync on Windows 2008

    I have installed pwd sync 64 bit on Windows 2008. Configured it in direct mode (no jms). But when I change the password of a user it is not syncing with the IdM. We have the 32 bit pwd sync working fine on Win 2003. Is there any special steps for ins

  • LDAP inport setting could not show

    Hi Today I inport iPrint 1.1 Appliance ovf to ESXi 5.1 and boot up..then running basic setting , I login Appliacne Console (https://ServerIP:9443), when I perform "LDAP import", it keep "loading" long time, then show HTTP ERROR 504 Problem accessing

  • Frequency in output

    I have created scripts as follow CREATE TABLE STUDENTS(   STD_ID Number,   STD_NAME Varchar2(25 ) CONSTRAINT SYS_C002716 NOT NULL,   PHONE_NUMBER Char(20 ),   FATHER_ADDRESS Varchar2(100 ),   BASIC_GRADE Number(38,0),   REGISTER_DATE Date,   COMMENT_

  • Does Yosemite 10.10.3 now enable Mac Mini 2014 to drive 4K SST displays at 60z?

    Per Using 4K displays and Ultra HD TVs with your Mac - Apple Support update 10 APR 15, Apple indicates Yosemite 10.10.3 now enables the late 2014 Mac Mini to drive 4K SST displays @ 60z.  Several others on the web have said this isn't accurate.  Befo

  • Afaria Server Installation Steps

    Hello , I have downloaded few files from SAP Service market place , but dont know what are the steps need to take care for Proper and smooth installation . Files information are below : 1) 51042956.zip 2) Afaria70001_0-21010386.zip 3) Afaria70002_0-2