Displaying help topics in SharePoint 2013

Hi, can anyone recommend a web part, app (or anything else) that would let me display help topics in SharePoint 2013 as shown in
this mockup (http://sharepointhelp.weebly.com/)? I've been trying to find an app or web part but haven't had any luck so far.
Thanks.

There are also a couple third party tools that could be used to help with this need. Two of my favorite are:
Content Panda: http://www.contentpanda.com/#in-context-help
and SharePoint Shepherd's Guide :
http://www.sharepointshepherd.com/sharepointtutor2013.aspx
Both of these are excellent tools. 
Cathy Dew SharePoint MVP Blog: www.sharepointcat.com Twitter: @catpaint1

Similar Messages

  • Displaying a webpage in SharePoint 2013

    Hello,
     I am trying to display a webpage within our SharePoint 2013 site. I added the Page viewer web part, but it doesn't fit the window so I need to use the scroll bars on the side and bottom.
    I came across this following post
    http://aryannava.com/2011/05/05/resize-sharepoint-20072010-pageviewer-webpart-height/
    and I tried to do it this way, but it makes the window really small. I am not sure what I am doing wrong here.

    Hi,
    We can apply custom CSS code to the current page which contains the Page Viewer Web Part to make the content of the Page Viewer Web Part smaller, then we will not have to use
    the scroll bar.
    With “transform: scale(0.5)” property, we can zoom in the content of the Page Viewer Web Part like this:
    You can add the CSS code like this in a Content Editor Web Part:
    <style type=”text/css”>
    #s4-bodyContainer
    transform: scale(0.5);
    </style>
    Feel free to reply if there are still any questions.
    Thanks
    Patrick Liang
    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]
    Patrick Liang
    TechNet Community Support

  • Displaying parameterized reports in sharepoint 2013

    hello experts...
    i have parameterized reports in ssrs 2008 r2 and i want to deploy it on sharepoint 2013...how can i deployed it?
    i have deployed the un-paremeterized reports on sp 2013.

    The approach is same. All parameters displays normally like in SSRS report viewer.
    I understand you are doing integration in traditional way with SharePoint.
    Bala

  • User name display in Discussion Board - SharePoint 2013 (Office 365)

    Hi,
    I would like to hide the display of user name of "Created by" and "Replied By" in discussion board.
    How to do this setup?
    Thanks and best regards,

    That's the nature of the web part.  Check here:
    http://office.microsoft.com/en-us/sharepoint-designer-help/display-data-from-multiple-lists-with-the-content-query-web-part-HA010174134.aspx
    The biggest limitation for content query web part is not able to go across site collections... but subsites should be ok. 
    Enter content by search web part.... new to 2013. 
    http://msdn.microsoft.com/en-us/library/office/jj163789(v=office.15).aspx

  • Need help to create SharePoint 2013 Designer workflow

    Hi TechNet Community Team,
    I've one list "Purchase Order" where I'm storing the data for purchase order details below are
    the fields.
    List Name = Purchase Order
    Order No, Order Date, Part No, Part Qty, Delivery Date, Delivery Qty, Balance Qty.
    Now in above list I'm storing the Purchase order details to check Order Qty and Balance Qty for every part
    no and this list is working fine.
    Now my requirement is to create one more list to issue the Part No from available Balance Qty in above List "Purchase Order".
    So I thought to create new list with below details (Please suggest me if you have other idea also I can use
    only SharePoint OutofBox feature or SharePoint Designer 2013):-
    List Name = "Issue Order"
    Issue No, Part No, Balance Qty, Issue Qty, Issue Date, Remaining Balance Qty OR Stock Qty
    So in List Name "Issue Order" once user will select "Part No" the "Balance Qty" will show the available Qty (from Purchase Order
    List). And once he enter Qty in "Issue Qty" column it will show the remaining Qty in "Remaining Balance Qty OR Stock Qty" column. 
    Also "Remaining Balance Qty OR Stock Qty" will get update in "Balance Qty" column in first list "Purchase Order" list so next time
    when user will issue the Qty from "Issue Order" he will get the correct Qty for Part No.
    Need your help to create workflow for List "Issue Order" so user can issue the items from this list
    and balance qty will update accordingly in List Name = Purchase Order. So next time when user will issue the "Part No" he will get correct quantity.

    Hi,
    For the Point# 1, per my understanding, there are two columns in the list2, both columns are getting values from list1. In List2, when user select a value for the
    “Part No”, you want the “Balance Qty” column to be populated automatically.
    As there is no such OOTB feature can meet this requirement, custom code using JavaScript would be required.
    The two similar demos below would be helpful:
    http://spservices.codeplex.com/wikipage?title=%24().SPServices.SPCascadeDropdowns
    http://www.codeproject.com/Tips/758909/Two-Level-Cascading-Drop-Down-in-SharePoint-using
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • Js link - Display group count list SharePoint 2013

     
    I have a list column name "category" with values like Completed, Not Completed, Started.
    I want to group list items based on category.  I want to format it without showing all the list items so that it should look like:
        Completed : 45
        Not Completed : 30
        Started : 20
    I am using Js link functionality on the list webpart to achieve it.
      (function () {
        var itemCtx = {};
        itemCtx.Templates = {};
        itemCtx.Templates.Group = GroupOverride;
        SPClientTemplates.TemplateManager.RegisterTemplateOverrides(itemCtx);
        function GroupOverride(Ctx, group, groupId, listItem, listSchema, level, expand) {
        return '<div style="font-weight:bold; display: inline-block;">' + listItem[group] + ' ::'  + '<div><ul>'+ listItem[group].Count + '</ul></div>' + '</div>';
    By using above code, I am able to show category names but not the count (listItem[group].Count is throwing error). Any idea how to achieve it?
        Completed : 
        Not Completed :
        Started : 
                 

    Hi,
    According to your description, you might want to change the format of the list view to display without list items.
    I would suggest you debug the script in browser to watch if
    listItem[group] object contains a valid Count property.
    About how to debug JavaScript using IE Developer Tool:
    https://msdn.microsoft.com/en-us/library/ie/bg182326(v=vs.85)
    If your requirement is to display something like a static HTML table, an alternative way is that you can apply custom CSS to the page to hide the unwanted elements.
    Here is a working demo will display the list view in a similar format as you want:
    <style type="text/css">
    .ms-gb
    border-bottom: none !important;
    .ms-gb a, .ms-gb2 a
    display: none !important;
    thead
    display: none !important;
    </style>
    Thanks
    Patrick Liang
    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]
    Patrick Liang
    TechNet Community Support

  • Customizing the Sharepoint 2013 inbuilt "SearchResult" webpart

     
    Acutally am working on the requirement,where i need to display the search results using Sharepoint 2013 inbuilt "SearchResult" webpart and where the results can be filtered by placing refining control in other Refiniment webpart in the same page.
    here come the question is "how i can access the displayed results in my "searchresults" webpart in my custom code.,where i have to access the path from the results on page and downloading the files based on path content.... please guys.your
    suggestions will be very helpful for my task...

    Hi,
    You can use the display templates to customize the results.  Please refer to the following article how to create the display template
    Introduction to SharePoint 2013 Display Templates
    Understanding how item display templates and hit highlighting work in SharePoint
    Server 2013
    Please mark it answered, if your problem resolved.

  • Contextual help topic link/recognition

    Is adobe Captivate contextual help topic link/recognition compatible?

    At present we use PeopleSoft system and the eLearning application it is linked to is UPK (both Oracle based).  I have recommended to change UPK to Adobe captivate.  But first need this issue addressed:
    Each page in the PeopleSoft application includes a Help icon that, when clicked, opens a new browser window displaying help topics related to that page.
    Universal Linking enables the hosted PeopleBooks system to search through one or more PeopleSoft product lines and return context sensitive help. This functionality makes it possible to retrieve help from PeopleTools and one or more applications(this is UPK), all using the same link you configure in the web profile of your application.
    So basically I need to know if Captivate is capable of this linkage.  All my files (UPK) are presently sitting on IIS webserver 7 within a web template.
    Hope this helps.
    Thanks
    Allison
    Allison Davis
    Systems Officer (UTrain) & Student Systems Co-ordinator (Acting)
    Student Administrative & Academic Support Ι Students & Communities Division Ι University of Southern Queensland
    Toowoomba Ι Queensland 4350 Ι Australia
    email: [email protected]<mailto:[email protected]

  • How display attachment links in a list view in SharePoint 2013?

    Hi all,
    I'm looking for a way to display attachment links in a list in SharePoint 2013. There are few resources online to achieve this in SP2010 and SP07. Your help is much appreciated.
    Thank you.

    Hi Ram Sampath:
    You can use Event Receiver and create another list(ListA) to record your attachment link.
    Maybe your process is:
    Users add list items and attachments
    List event will be fired
    Use Event Receiver to get attachment url and then Write into ListA
    You also can refer to the following web site:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/b693eb84-b846-4f0f-93c1-276cf931c746/how-to-get-attachment-in-itemadded-event-receiver
    http://stackoverflow.com/questions/19077770/how-to-retrieve-list-item-attachments-with-sharepoint-2013-event-receiver-in-cor

  • Sharepoint 2013 - Display Disclaimer when a MySite is created

    Hallo there,
    i spent the whole day searching the web for something i thought i already found some time ago, but cannot remember where...
    Maybe you guys can help...
    We need to Display some Kind of disclaimer / Terms of usage when a user initially creates his mysite. Best solution would be to Display a Website with a "Yes" / "No" choice... Clicking "Yes" would continue to create the
    users mysite - "No" would cancel the process.
    is there any way to do this?
    Thanks in Avance!
    Phife

    Hi Phife,
    When we first time to click "About me" menu to create MySite, it will pop up "Let's get social" dialog, I think you may have found this dialog some time ago.
    If you want to popup other disclaimer dialog when you click "About me", I think you can try customizing it's event to judge if MySite hasn't been created then pop up the custom disclaimer dialog with Yes/No choices for creating mysite agreement, then perform
    the proper action based on the Yes or No.
    http://paulliebrand.com/2014/02/26/sharepoint-2013-get-the-most-out-of-sharepoint-dialog-explained/
    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

  • Create Refinement topics for web application in SharePoint 2013 Search

    
    Is there a way we can add available web application name in refinement panel in SharePoint 2013 search. there is a search called Enterprise search which is named as Everything, that search from all the web applications available. is there a way we can have
    a search refinement panel which is the list of web applications so that it allows us to filter the results by web application.
    can we add a refinement panel like below  in SharePoint Search 2013
    here is an image for 
    kukdai

    Hi kukdai,
    To use result source or query rule to distinguish search results, besides adding custom search vertical, you could also consider using result block:
    http://blogs.technet.com/b/mspfe/archive/2013/02/01/how-query-rules-and-result-sources-can-be-used-to-customize-search-results.aspx
    http://www.sharepoint2013.me/Blog/Post/261/SharePoint-2013---Create-and-display-results-blocks
    Quote:
    In SharePoint, result block will display the search results as a group. We can promote result block depending on the query condition as specific result. While configuring query conditions for results block, we can use query variables. We can specify query
    variables as place holders for unknown values in SharePoint query.
    Then we can use Path in query rule to divide search results into several web applications.
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • SharePoint 2013 Help broken

    Hi,
    SharePoint 2013 help system at: http://office.microsoft.com/client/15/serverhelp/results?qu=List&products=WSSEndUser&lcid=1033&SYSLCID=1033&UILCID=1033&Version=15
    seems to have broken. Can moderator please report the issue to Microsoft?
    Thanks,
    techie

    Hi Techie,
    This issue is a general issue and it is not from your system and configuration.
    Microsoft is working on this issue and try to find a solution as quickly as possible.
    One way to solve temporarily, in some cases, you can follow the steps below:
    Go to Central Administration URL and replace "default.apx" by“_admin/privacy.aspx”.
    Scroll down to “Display Help from external Web Sites as specified by each Help collection”  and click  “No”.
    This will allow to use local SharePoint help, not online help until Microsoft fix this issue.
    Here is a similar thread for your reference:
    https://social.technet.microsoft.com/Forums/en-US/877a5986-c7e5-4b39-865d-484c3fd981b2/the-sharepoint-help-search-appears-to-be-broken-in-our-installation-of-sharepoint-2013?forum=sharepointsearch
    Thanks,
    Victoria
    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]
    Victoria Xia
    TechNet Community Support

  • Jquery not fired on List display or edit forms in SharePoint 2013

    I have put the below code in List Display form. But I am not getting the alert. It used to work in 2010. After migration to 2013 it is not working although it works fine for all other pages. The jquery reference is on the master page.
    <script type="text/javascript">
    $(document).ready(function(){
    alert('Jquery');
    </script>

    Hi ,
    According to your description, my understanding is that your Jquery code didn’t work in SharePoint 2013 list display form.
    Please use IE Developer Tools(F12) to check whether there is a .js file like the screenshot:
    If not, you need to add a reference from Jquery class library like <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>.
    If this issue still exists, please use the following code to test:
    <script type="text/javascript">
    function show_alert()
    alert("Test!");
    _spBodyOnLoadFunctionNames.push("show_alert")
    </script>
    A similar post for your reference:
    http://sharepoint.stackexchange.com/questions/54125/why-does-jquerys-document-ready-not-fire
    Best Regards,
    Wendy
    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]
    Wendy Li
    TechNet Community Support

  • Link Title field to custom display form in SharePoint 2013 blog site

    Hi,
    I have blog site in sharepoint 2013.
    I want to display the item in read only view of the selected item.So I have created one custom display form.
    Now I want to link this display form with the Title Field.
    So that when user click on the title field, the display form should show to view only the item and if the user is approver, can approve also.
    Please help me to achieve this.
    waiting for your quick response.
    Thank you!

    Hi  ,
    According to your description, my understanding is that you want to display custom display form when users click on the title field.
    For achieving your demand, you need to implement an ihttpmodule and intercept the request. For more information, you can refer to the code as below:
    private void context_BeginRequest(object sender, EventArgs e)
    HttpApplication application = sender as HttpApplication;
    if (application != null && application.Context != null && application.Request != null)
    HttpRequest request = application.Request;
    HttpResponse response = application.Response;
    if (request.Url.ToString().ToLower().Contains(http://yoursite/libraryname))
    response.Redirect(newlocationurl);
    Reference:
    http://sharepointgotchas.wordpress.com/tag/httpmodule/
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • List of latest features / topics to learn/cover from SharePoint 2013 developer perspective

    Hi,
    Looking out of a list of latest features / topics to learn/cover on SharePoint 2013 from developer perspective and for which are all things on SharePoint more job openings are there (latest).
    Kindly provide the same.
    Regards,
    developementsharepoint

    Hi,
    In addition to what is stated by Zhengyu Guo and Oliver, I think you will need to study some stuff for development
    1- Apps Model: provider hosted and Sharepoint hosted
    2- Developing Farm Solutions
    3-SharePoint designer workflow
    4- Branding
    some links
    http://www.microsoftvirtualacademy.com/training-courses/developing-microsoft-sharepoint-server-2013-core-solutions-jump-start
    http://msdn.microsoft.com/en-us/library/office/jj163230(v=office.15).aspx
    http://www.codeproject.com/Articles/690015/SharePoint-Online-App-Development-Part
    http://blogs.msdn.com/b/uksharepoint/archive/2013/03/25/sharepoint-2013-development-apps-versus-solutions.aspx
    http://www.microsoftvirtualacademy.com/training-courses/developing-sharepoint-server-advanced-solutions-jump-start
    http://www.shillier.com/archive/2013/04/24/my-msdn-sample-apps.aspx
    http://msdn.microsoft.com/en-us/library/office/jj163902(v=office.15).aspx
    http://brandingsp2013.codeplex.com/
    http://msdn.microsoft.com/en-us/library/office/jj554671(v=office.15).aspx
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation. Please remember to mark the reply as answer if it helps.

Maybe you are looking for