SharePoint 2010 keywords webpart

Hello,
I'm looking for a webpart like this
http://www.mcac.maryland.gov/newsroom/TerrorismNews in this site. Can I do something similar to this? I don't think tag cloud can achieve this, it takes users to mysite which I don't want.
I want users to see top 10 keywords, and when they click, it takes them to the related article.
Thank You

Hi Danny,
As the tags can be used to tag many documents, and you want to direct users to one of the documents by clicking the tag, then you need to customize your own web part with code.
In the code, you need to get all the documents which have been tagged by this tag with SocialTagManager.GetAllUrls Method:
https://msdn.microsoft.com/en-us/library/office/microsoft.office.server.socialdata.socialtagmanager.getallurls(v=office.14).aspx
And then you can set an onclick event to open the one of the documents by clicking the tags.
Best regards.
Thanks
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]

Similar Messages

  • SharePoint 2010 - Yammer webpart- Cannot connect to Groups

    We have a SharePoint 2010 environment with the Yammer webpart installed
    when adding the Yammer webpart to a page we can connect to user feeds, company feed, but when we want to add a GroupFeed and try to search for groups we get following:
    Somebody encountered this issue before?

    Hi,
    As this question is more related to the Yammer web part configuration, I suggest you create a post to the Yammer Support, more experts will help you find the solution
    of the issue.
    Support for Yammer:
    http://support.microsoft.com/gp/yammer
    Best regards,
    Zhengyu Guo
    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]
    Zhengyu Guo
    TechNet Community Support

  • SharePoint 2010 Calendar Webpart

    Hi Team,
    I have a SharePoint 2010 Calendar View webpart and I want to hide/disable the weekends (saturday, sunday).
    Please let me know the plausible solution for the same.
    Regards Sourabh Soni

    Hi Sourabh,
    I am just redirecting you to other thread on msdn for same issue.Please go through this.
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/30a457f9-5071-4c8f-9816-083a72728e70/hidingremoving-weekends-sat-and-sun-from-sharepoint-calendars?forum=sharepointgeneralprevious
    Hope this helps you.
    Regards
    Soni K

  • SharePoint 2010 : Slider webpart

    Hi techies,
    I got a requirement to implement slider webpart in SharePoint2010 and i created slider webpart by using BXslider plugin
    here is the Screenshot:
    <script type="text/javascript" src="/_layouts/Scripts/jquery-1.11.0.min.js"></script>
    <script type="text/javascript" src="/_layouts/Scripts/jquery.bxSlider.min.js"></script>
    <style type="text/css">
    .bx-wrapper
    background-color:inherit;
    padding:10px 10px 10px 10px;
    .vclass
    vertical-align:top;
    .tdinfo
    font-family:Trebuchet MS !important;
    font-size:16px !important;
    vertical-align:top;
    color:#2c3e50;
    line-height:normal;
    text-align:justify;
    .wpheading
    font-family:Trebuchet MS !important;
    font-size:22px !important;
    background-color:#e6e5e5;
    padding:10px 10px 10px 10px;
    margin-top:3px;
    margin-bottom:10px;
    color:#2f2f2f;
    .tdtitle
    font-family:Trebuchet MS !important;
    font-size:20px !important;
    padding:10px 0px 10px 0px;
    color:#2f2f2f;
    margin-bottom:5px;
    .tdlink
    font-family:Trebuchet MS !important;
    font-size:14px !important;
    width:100px;
    color:#2f2f2f !important;
    background-color:#fec80d;
    padding:5px 5px 5px 5px;
    margin-top:3px !important;
    .tdlink:hover
    background-color:#F2F2F2;
    color:#627AAD !important;
    .tdlink a
    color:#ecf0f1 !important;
    text-decoration:none;
    .tdlink a:hover
    color:#e6e5e5!important;
    text-decoration:none;
    #sliderImage
    vertical-align:top;
    .bx-window
    /*height:150px;*/
    .bx-pager
    margin-top:15px;
    text-align : center;
    .bx-pager a
    color: #2f2f2f !important;
    font-size: 16px;
    padding: 0 10px;
    .bx-pager .pager-active, .bx-pager a:hover
    background-color:#fec80d;
    color: #2f2f2f !important;
    text-decoration: none;
    a
    text-decoration: none;
    #centeroverlap {
    left: 300px;
    top: 36px;
    font-family: Verdana;
    line-height: 80%;
    </style>
    <script type="text/javascript">
    $(document).ready(function () {
    $('#slider1').bxSlider({
    auto: true,
    pager: true,
    controls: false,
    pause: 10000
    </script>
    <div class="wp-Cover">
    <div class="wpheading">News</div>
    <div id="slider1" >
    <asp:Repeater ID="rep1" runat="server">
    <ItemTemplate>
    <!--<div style='<%# "background: url('" + Eval("Image") + "') no-repeat top center" %>' >-->
    <table >
    <tr>
    <td colspan="2"><div class="tdtitle" >
    <%# DataBinder.Eval(Container.DataItem, "Title")%>
    </div>
    </td>
    </tr>
    <tr>
    <td id="sliderImage">
    <img class="img-border" alt="" src="<%# DataBinder.Eval(Container.DataItem, "Image") %>" width="190px" height="150px" />
    </td>
    <td class="tdinfo">
    <%# DataBinder.Eval(Container.DataItem, "Body")%>
    <div ><a class="tdlink" href="<%# DataBinder.Eval(Container.DataItem, "ListItemUrl") %>">[Read More..]</a></div>
    </td>
    </tr>
    <tr>
    <td></td>
    <td>
    </td>
    </tr>
    </table>
    </ItemTemplate>
    </asp:Repeater>
    </div>
    </div>
    <script type="text/javascript">
    $('img').error(function () { $(this).hide(); });
    $('img').each(function () { this.src = this.src; });
    </script>
    above code is design code of my webpart
    which fetched data from a list and binds data to the tags
    Now my requirement changed.. they need a slider with background image and contents on the image
    [Note: both the images and contents should slider]
    For the requirement i tried many approached but i am not able to succeed. 
    Please any help will be appreciated.

    Try below:
    https://www.nothingbutsharepoint.com/sites/eusp/Pages/SharePoint-Integrate-a-Slider-with-the-Content-Query-Web-Part-Part-1-What-does-my-Slider-Need-to-Work.aspx
    <div id="slides">
    <div class="slides_container">
        <div class="slide">
            <a>link 1</a>
            <div class="caption">
                <p>caption text 1</p>
            </div>
        </div>
        <div class="slide">
            <a>link 2</a>
            <div class="caption">
                <p>caption text 2</p>
            </div>
        </div>
    </div>
    </div>
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/aa37ab24-9fe2-4418-8acc-b6a7e1f15646/sharepoint-slider-webpart?forum=sharepointgeneralprevious

  • Sharepoint 2010 sandboxed webpart page load

    hello,
    I need to run some coding at the time of page load,under which event i need to write coding.
    please help.
    thanks

    Hello,
    Try below code to see current user group membership:
    bool isMember = false;
    using (SPSite site = new SPSite("http://siteurl"))
    SPWeb web = site.RootWeb;
    string groupName = "Group Name";
    var spGroup = web.Groups[groupName];
    isMember = web.IsCurrentUserMemberOfGroup(spGroup.ID);
    Refer this link code for hiding webpart:
    http://social.msdn.microsoft.com/Forums/en-US/721be330-dab5-4b72-9bab-da62f5a0dd02/how-do-i-hide-a-web-part-programmatically-so-i-is-only-visible-in-edit-mode?forum=sharepointdevelopmentlegacy
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • SharePoint 2010 Dataview webpart in Datasheet view

    Is it possible to display a Dataview webpart in Datasheet view?
    To be more precise,I am using Dataview webpart to display a XML file data(using XML file connection in SPD).I would like to know if i can display this data using Datasheet view from the DVWP.
    Any inputs/suggestions would be highy appreciated....

    Is it possible to display a Dataview webpart in Datasheet view?
    To be more precise,I am using Dataview webpart to display a XML file data(using XML file connection in SPD).I would like to know if i can display this data using Datasheet view from the DVWP.
    Any inputs/suggestions would be highy appreciated....

  • SharePoint 2010 Query string parameter pass between visual webparts

    Hi
    I should pass a query string value from one visual webpart to another visual webpart in SharePoint 2010 .
    Could you please help me like how we can pass
    Thanks
    Siddartha

    In the webpart you can add the code like "Response.Redirect("Page2.aspx?CustomerID=326");"
    Once you develop the webparts, add them to the respective pages based on your required functionality.
    Please check the similar thread
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/3099100f-72b2-4850-ba50-1e02416e9d9c/passing-query-string-between-two-webparts-usercontrols?forum=sharepointdevelopmentlegacy
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Sharepoint 2010 Webpart debugging - Writing to the console

    I am creating a SharePoint 2010 Webpart, and I'd like to write to the console for debugging purposes. Unfortunately the command Console.Writeline doesn't seem to work for me. How do I fix this??

    Unfortunately, the functionality you're looking for doesn't exist.  Web parts are primarily used for web applications and are built within class libraries, which have no console functionality at all. Therefore, prevents writing to the console.
    Alternatively, you can use Visual Studio to debug the web part and step through the code using breakpoints.  Visual Studio 2010 allows you to Debug the web part by hitting "F5".
    Here's a link for some resources to help you get started developing web parts for SharePoint 2010.
    http://donahoo-development.com

  • Sharepoint 2010, after restore, webpart only can viewd by authenticated users in the public page.

    Hi, I restore a Site from one server to other which have a different domain.
    I installed the wsp files, I published the page, I check for the site pages and everything is ok but, when I visit the page as normal
    user from internet, I get the next error when I visited the pages with webparts.
    When I visit the page with an authenticated user, that show me the webpart normaly.
    I try to check for permissions in the page, I click page permissions
    or library permissions and shows the next:
    Shows me the same error.
    Any ideas?
    Thanks a lot!!

    Hi,
    As I understand, after you restored the site from one server to other server you encountered the error.
    1. From the error you provided, it seems that it cannot find relative files, it is possible that you did not restore the site fully. You can restore the site again. 
    2. You can check the ULS log with the correlation ID, and get the details of the errors. You can fix the problems according to the details of the errors. 
    The case below is about there are several ways to backup and restore site in SharePoint 2010, you can refer to the case.
    http://sharepoint.stackexchange.com/questions/34639/problem-restoring-sharepoint-from-backup 
    Best regards,
    Sara Fan
    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 2010: How to map documentset attibutes to objects - In SharePoint Webpart

    Hey,
    I guess it's a pretty simple question but I really do not get one inch closer to a solution. I'm working on a WebPart on SharePoint 2010 which manages a documentset (document library with an custom content type). Creating an storing of documentssets works fine
    by now but I do have problems in mapping the stored sets to my c# objects backwards. I actually do not find the fields in my object structure while debugging my code
    I create the docuemtset like this...
    internal DocumentSet CreateDocumentSet(SPList spListObject, SPContentType spContentType, object itemToCreate, Type typeOfItemToCreate)
    var properties = new Hashtable();
    Guid id = Guid.NewGuid();
    //Description
    foreach (PropertyInfo p in typeOfItemToCreate.GetProperties())
    properties.Add(p.Name, p.GetValue(itemToCreate, null));
    SPFolder parentFolder = spListObject.RootFolder;
    DocumentSet docSet = DocumentSet.Create(parentFolder, InnovationListName + "_" + id, spContentType.Id, properties, false);
    return docSet;
    I'm thinking of somethink like this ...
    internal MyObject DocSetToObject(SPList list, int ID)
    var docset = DocumentSet.GetDocumentSet(list.GetItemById(ID).Folder);
    return new MyObject
    Text= docset...,
    Id = docset...,
    Tags= docset...,
    Title = docset...,
    Hope you can help me out.. This problem is killn me  ^^ ;-)
    Thanks
    Spanky

    Hi,
    According to your description, you might want to create a class to perform the CRUD operations against a DocumentSet in your library.
    Here is a demo about how to handle an item for your reference:
    //Create a MyItemWrapper.cs:
    public class MyItemWrapper
    public int ID { get; set; }
    public string Title { get; set; }
    SPList list;
    SPListItem item;
    public MyItemWrapper()
    using (SPSite site = new SPSite("http://sp"))
    using (SPWeb web = site.RootWeb)
    list = web.Lists["List2"];
    item = list.Items[0];
    this.ID = item.ID;
    this.Title = item["Title"].ToString();
    public void setTitle(string t)
    item["Title"] = t;
    item.Update();
    this.Title = t;
    Feel free to reply if this is not what you want.
    Best regards
    Patrick Liang
    TechNet Community Support

  • Birthday webpart sharepoint 2010

    Dear all
    I'm new to sharepoint 2010,I want a birthday webpart which load its data from user profile service.
    I want individuals photo displays in this webpart and there be an item for mail him/her for congrats.
    Does anybody have free wsp which is compatible with sharepoint 2010 for that matter?
    thanks

    Hi Sara,
    According to your description, you want to create a web part to display users' birthday and send email for the users.
    For this requirement, you can use Jquery and a CEWP instead of a visual webpart , more information, please refer to the link:
    http://social.technet.microsoft.com/Forums/en-US/54b1ed22-8965-4ecd-93dc-438ae0b51998/how-to-create-birthday-anniversary-visual-webpart-in-sharepoint-2010?forum=sharepointgeneralprevious
    In addition, there is a third party solution, please have a look at:
    http://downloads.info/windows/office/document/sharepoint-birthdays-web-part.html
    Below are some similar posts for your reference:
    http://social.technet.microsoft.com/Forums/en-US/66decf75-b573-4619-9a17-439e2ec8589c/creating-birthday-reminder-in-sharepoint-2010-master-page?forum=sharepointgeneralprevious
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/05312e10-6bee-4fed-bae6-e97ba1eb3474/birthday-reminder-using-custom-listweb-part-in-sharepoint-2010?forum=sharepointgeneralprevious
    http://sharepoint.stackexchange.com/questions/70996/birthday-alert-webpart-in-sharepoint-2013
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Fixed width for WebPart Zones with Tableless design lost width in IE8+, works fine in IE7 SharePoint 2010

    Hi,
    I am facing a weird issue in IE8 and above browser after changing the Tables to <div> (Table less) Design for SharePoint 2010 Layouts with Custom Web part Zones.
    If no webpart is added in Zones the width is not staying. refer the above Screen shot.
    A basic HTML with fixed width Div blocks no issue in IE8+. Only SharePoint this is a issue.
    Any lights here please help.
    thanks
    Vinod

    Hi,
    We can use IE F12 developer tools to check the CSS style in this Web Part Zones.
    Using F12 Developer Tools to Debug HTML and CSS
    https://msdn.microsoft.com/en-us/library/ie/gg699337%28v=vs.85%29.aspx?f=255&MSPPError=-2147217396
    Or try to add "!important" in your custom div CSS style.
    <style type="text/css">
    #divid{
    width: 1010px !important;
    </style>
    Best Regards,
    Dennis Guo
    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]

  • How to Deploy OOB Webparts created in Sharepoint 2010 designer to production system

    Hi,
    Can anyone help me the process of deploying the OOB Webparts developed in Sharepoint 2010 designer to Production Server.
    Actually i developed some OOB Webparts and Workflow using Sharepoint 2010 designer.
    So, i want to move these OOB Webparts and Workflow to my Production System.
    Please assist me what is the process?
    Rama

    Hi,
    Thanks for posting your query, 
    There are a lot of mechanisms for doing this, but doing a simple export from your dev environment and then an import into your prod environment is probably a good place to start. You can move the whole site or just a list/library. You can do it via PowerShell
    or Central Admin:
    Export:
    http://technet.microsoft.com/en-us/library/ee428301.aspx
    Import:
    http://technet.microsoft.com/en-us/library/ee428322.aspx
    I hope this is helpful to you. Please mark it as
    Answered. If this works
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS )
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Thread Process is exiting without completing the process in SharePoint 2010 webpart

    We have implemented simple thread to process to excel upload into SharePoint 2010 custom list.
    Thread process running in local SharePoint 2010 environment (OS -Windows 7). Once we deployed in SharePoint server,
    Thread process is exiting without completing its proces.
    Please let us know if you know any resolution.
    Code is as below
    Thread thread = new Thread(new ThreadStart(UploadData)); //Upload is the method where data will insert into List
    Thread.Start();
    Marulasiddappa SB (Swamy)

    Hi,
    According to your post, an error occurred when you used Thread in SharePoint 2010 web part.
    Please can do as follows:
    1. Execute the  UploadData method to see whether it can work.
    2. Debug your solution in Visual Studio to get more information the error,
    It will be easier for us to research if you can provide more code.
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Sharepoint 2010 webpart connection issues

    I've had a number of people having issues starting the LiveCycle feature in sharepoint 2010 here is the workaround
    I had to do the following, download the powershell script located here https://skydrive.live.com/?cid=3d1aa7b9ba4b05fd&resid=3D1AA7B9BA4B05FD!234&id=3D1AA7B9BA4B 05FD%21234
    Go into powershell, that’s done by running powershell.exe just like you would a cmd prompt
    When at the powershell prompt issue the command Set-ExecutionPolicy AllSigned
    Issue a cd to go to the directory that contains the download script
    Then issue .\Set-RemoteAdministratorAccessDenied-False.ps1

    This is a known issue. See the blog http://blogs.adobe.com/livecycle/2012/05/access-denied-sharepoint.html

Maybe you are looking for

  • Installation from previously downloaded app?

    I am trying to understand if and how I can install Photoshop CC onto my second computer without going through the download process all over again. I have it installed on computer one, and the second computer is at a location with poor internet servic

  • Yakuake acting weird after system update

    After a #pacman -Syu, yakuake gave me this problem: It was working without problems before this update. I'm using the latest xorg and nvidia-drivers (vga is a GeForce4 mx 4000). My xorg.conf: # nvidia-xconfig: X configuration file generated by nvidia

  • Can't access "my recipes" on Food Network

    I can't access "my saved recipes" on the Food Network site on one log in.  On another log in-same MacBook Pro-I can.  I'm guessing a setting may have been switched somewhere, but haven't been able to solve this.  Help would be appreciated!

  • Mac-Mini on APC BE750G UPS ?

    Is anyone successfully using the referenced UPS (or similar non-pure sine wave model) with a Mac-Mini ?   In my research I am seeing warnings about using iMacs with these "stepped-sine" UPS devices, and calls for using a pure-sine wave device.   Do I

  • (266436851) Q: WWSD-7 Can web service be in packages other than .ear files?

    Q:<WWSD-7> Could we deploy the SOAP package not using the ear, instead could we put all the related Java code to jar file and the rest of the code to the war files? The reason I asked is because we do not deploy our applciation in ear format. A:<WWSD