To show ECB in dataview webpart Sharepoint 2013

HI
I have to add ECB to my dataview webpart. Normally it was not feasible in 2010 but is it possible now in 2013.
Can we add the ECB or it remains same 
Thanks

Hi,
According to your post, my understanding is that you wanted to show ECB in dataview webpart Sharepoint 2013.
If you want to enable ECB menu on a column in dataview webpart, you need to open the SharePoint Designer 2013, select the web part, under
<View> locate  <ViewFields> and then the
<FieldRef Name=”Title”> or the field where you want to enable the ECB menu and then add the attribute
ListItemMenu=”TRUE”.
Here is a similar blog for you to take a look at:
http://www.dhirendrayadav.com/2013/12/enabling-ecb-menu-on-custom-column-in.html
Best Regards,
Linda Li
Linda Li
TechNet Community Support

Similar Messages

  • User profiles from Active directory when loggedin then userdisplay, useredit shows blank white screen in SharePoint 2013

    User profiles from Active directory when loggedin then userdisplay, useredit shows blank white screen in SharePoint 2013 
    I can login with the these AD users and AD direct import is working just fine. We are not using UPS.
    With admin user when I click on the user it shows up proper data. But when I login with the same user it does not show me userdisplay/useredit and shows blank data. Also another strange thing is when I add new item in list with these AD users created by
    modified by is blank and its really strange. I checked user information list, tried to rerun user sync with direct AD import option but no success.
    MCTS Sharepoint 2010, MCAD dotnet, MCPDEA, SharePoint Lead

    Hi Amit,
    According to your description, my understanding is that the page is blank when the use accessed /_layouts/15/userdisp.aspx and the created by field was blank when the user created a new list item in SharePoint 2013.
    I tested the same scenario per your post, however I cannot reproduce your issue.
    For troubleshooting this issue, I recommend to verify the things below:
    Check the permission of the user in the corresponding site collection to see if he can access /_layouts/15/userdisp.aspx.
    Delete the user from AD and SharePoint, then re-add the user to AD and grant proper permission to the user in SharePoint to see if the issue still occurs.
    Did this issue occur with all the users? Add a new user in AD and test the same scenario.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • AppGlobalResource File In Visual Webpart SharePoint 2013

    Hi,
    I am trying to get resource file entry in the visual web part but wen i try to deploy the solution it's showing an error as below.
    Error    14    The name 'MyResourceFile' does not exist in the current context    C:\Users\Administrator\Documents\Visual Studio 2012\Projects\MySolution\MySolution\WebParts\Test\Test.ascx.g.cs    56  
     60    MySolution
    What i did:
    I right click on my project name and choose "Add" >> "New Item"
    In the next dialog select the "Empty Element" and name it e.g. "GlobalResources"
    Now click right on the new "GlobalResources" folder (Module) and add a new resource file.
    I named it MyResourceFile.resx
    Enter some keys and values in the resource file
    In the next step click on the MyResourceFile.resx file to display the properties. Change the "Deployment Type" attribute to "AppGlobalResource".
    Now i created a asp literal control and in the text property i did the following
    <asp:Literal ID="litControl" runat="server" Text="<%$ Resources:MyResourceFile, Name %>"></asp:Literal>
    and then i tried to deplo the solution i get the following error
    Error    14    The name 'MyResourceFile' does not exist in the current context    C:\Users\Administrator\Documents\Visual Studio 2012\Projects\MySolution\MySolution\WebParts\Test\Test.ascx.g.cs    56  
     60    MySolution
    Please let me know what am i missing,actually i want to deploy my resource files under the AppGlobalResource folder.

    I am trying to get value from the resource file but not able to deploy my solution.
    I  added an empty element in my solution and then added resource file in it,after that i used to get resource file value in the mark up file like this
    <asp:Literal ID="litControl" runat="server" Text="<%$ Resources:MyResourceFile, Name %>"></asp:Literal>
    but when i build/deploy the solution i am getting the following error.
    The name 'MyResourceFile' does not exist in the current context.
    Note: I am using SharePoint 2013 and using Visual Studio 2012 Premium edition,and this issue is occuring in both sandboxed and farm solution.
    please help.

  • Problem adding DataView in SharePoint 2013

    Hello everyone, i have one problem, so please help me... :(
    I have created site collection in SharePoint 2013 with one subsite. I have created a list in parent site (site collection) and when i am adding Empty Data View (with SharePoint Designer 2013) i can not see the list in Data Sources???? What am I doing wrong?
    Tnx,
    Eli

    Hi Eli,
    Here are the steps I performed when add dataview in SharePoint Designer 2013 for your reference(I assume you have create a list named list1 and document library named doclib):
    Open SharePoint Designer > Open sites > enter site collection:
    http://sp/sites/sitecollectionname
    Expand All Files > locate doclib, right-click it > New ASPX > Rename it as test
    Double-click test > Edit file > click yes to open in advanced mode
    Insert tab > DataView > Empty DataView
    Locate <DataSources> </DataSources> part and insert tab > Data Source. Then you could choose your list.
    Then you could choose the fields you would like to add in the Data Source Details panel in the right.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Error In Visual WebPart SharePoint 2013

    So I was creating a SharePoint 2013 visual web part on Visual Studio 2012 and came to this problem. Visual Studio automatically creates WebPartUserControl.ascx.cs and WebPartUserControl.ascx.g.cs. the WebPartUserControl.ascx.g.cs is generated automatically
    when you edit the WebPartUserControl.ascx file. So I've added a couple of ContentTemplate tags into .ascx file and Visual Studio generated this code in WebPartUserControl.ascx.g.cs :
    public partial class WebPartUserControl {
       public static implicit operator global::System.Web.UI.TemplateControl(AjaxVisualWebPart target)
           return target == null ? null : target.TemplateControl;
    When I try to deploy the solution, Visual Studio underlines the implicit operator
     global::System.Web.UI.TemplateControl and
    I get this error:
    Namespace.WebPart.WebPartUserControl.implicit operator
    System.Web.UI.TemplateControl(Namespace.WebPart.WebPartUserControl)':
    user-defined conversions to or from a base class are not allowed
    I don't even imagine how to solve this even though im struggling on this issue for a couple of hours now... Can somebody help me, please? I assume I have to add something to the .ascx file or to WebPartUserControl.ascx.cs maybe? Thanks in advance!

    Hi somu1,
    I suggest you check if the parameter is valid in the function.
    By default, the parameter is the same as you class name like below:
    public partial class HelloWorldWebPart {
    public static implicit operator global::System.Web.UI.TemplateControl(HelloWorldWebPart target)
    return target == null ? null : target.TemplateControl;
    Here is a detailed code demo for your reference:
    A look at Visual Web Parts in Visual Studio 11
    Best Regards
    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

  • MySite NewsFeed is not showing the feeds from a SharePoint 2013 site which followed programmatically

    Hi Experts,
    I am facing an issue with following SharePoint 2013 site programmatically. When i was followed a site programmatically, unable to see the posts from followed site in MySite NewsFeed. But i can able to see the followed site in the list of sites i am following.
    If i did the same manually by clicking on Follow link on right top of the site, i can able to see the posts from the followed site in MySite NewsFeed.
    Here is my code. I am doing this activity in an event receiver, while adding an user to the site. 
                                SPSocialFollowingManager manager = new SPSocialFollowingManager(profile);
                                SPSocialActorInfo actorInfo = new SPSocialActorInfo();
                                actorInfo.ContentUri = new Uri(properties.Web.Url);
                                actorInfo.AccountName = targetUser.LoginName;
                                actorInfo.ActorType = SPSocialActorType.Site;
                                manager.Follow(actorInfo);
    Any help would be appreciated. Thanks in advance!
    dinesh

    Hi,
    According to your description, my understanding is that you want to follow site programmatically in SharePoint 2013.
    I suggest you debug the code step by step to check whether the variable is valid.
    You can also create a simple console application to test whether it works.
    Here is a code snippet for your reference:
    SPServiceContext serverContext = SPServiceContext.GetContext(web.Site);
    UserProfileManager profileManager = new UserProfileManager(serverContext);
    string userString = user.LoginName.ToString();
    UserProfile userProfile = profileManager.GetUserProfile(userString);
    if (userProfile != null)
    SPSocialFollowingManager manager = new
    SPSocialFollowingManager(userProfile);
    SPSocialActorInfo actorInfo = new SPSocialActorInfo();
    actorInfo.ContentUri = new Uri(web.Url);
    actorInfo.AccountName = user.LoginName;
    actorInfo.ActorType = SPSocialActorType.Site;
    manager.Follow(actorInfo);
    More detailed information about follow site programmatically:
    http://stackoverflow.com/questions/23271133/how-do-i-follow-site-in-sharepoint-2013-with-ssom
    http://msdn.microsoft.com/en-us/library/office/jj163217(v=office.15).aspx
    Best regards,
    ZhengyuGuo
    Zhengyu Guo
    TechNet Community Support

  • Captcha in Visual Webpart SharePoint 2013

    I want to insert a captcha control like below in my visual web part in sharepoint 2013.
    Please suggest how can i achieve this.

    Hello,
    Hope the below link helps you
    http://recaptchaforsp.codeplex.com/
    http://www.etechplanet.com/blog/create-captcha-image-using-c-and-aspnet.aspx
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Using CreatedModifiedInfo in custom webpart SharePoint 2013

    We've used those lines of code in SharePoint 2010 for a long time and we never had any issues with them. We've created a custom webpart and added the modifiedinfo toolbar to the bottom. Now we've moved our site from SP2010 to a SP2013 while still using SP2010
    UI. So we're still in 2010 mode while this problem occurs.
    internal static void AddToolBarInfo(this ToolBar toolBar, SPControlMode mode)
    info = new CreatedModifiedInfo();
    info.ControlMode = mode;
    toolBar.Buttons.Controls.Add(info);
    The control is added properly but no information are shown inside the toolbar. Somehow not many persons have used this toolbar, so I'm not able to find many informations about it. Since we've never done more than adding the control, I don't know where to
    start looking when the control is not properly filled.
    Regards Andreas MCPD SharePoint 2010. Please remember to mark your question as "answered"/"Vote helpful" if this solves/helps your problem.

    Has anyone used the CreatedModifiedInfo before in his code?
    Regards Andreas MCPD SharePoint 2010. Please remember to mark your question as "answered"/"Vote helpful" if this solves/helps your problem.

  • Sharepoint 2013 -webpart question

    hi,
    I need to create a page that will display list items based on a value users enter in drop-down or text box. This would contain the months of the year.  Then, I need to display the list items based on that selection.  I would include the month
    field  in that list.
    Is there a web part that will do this?  My manager doesn't want me to create a content query web part, he wants it out of the box.
    Thanks
    mhoran

    hi
    use list view web part+filter webpart
    SharePoint 2013 Out of Box Web Parts
    yaşamak bir eylemdir

  • Sharepoint 2013 XSLT view in Dataview webpart

    I have one doubt. Recently I seen that in sharepoint 2013, for data view webpart xslt view is not available in Sharepoint Designer. I came to know that XSLT view will not be supported in 2013. My query is whether Microsoft will remove complete XSLT part
    in next version of sharepoint. Like Content query webpart and all. Also am not getting why they removed that XSLT view in 2013. Because if they are going to remove XSLT, then it will create a problem in migration and all. Please clear me if you have any idea
    on the same.

    Hi,
    You should use CSR(Client Side rendering)
    http://sharepoint.stackexchange.com/questions/75451/xsl-to-customize-xsltlistviewwebpart-sharepoint-foundation-2013
    http://www.rbradbrook.co.uk/blog/2013/04/14/introduction-to-client-side-rendering-in-sharepoint-2013/
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Status of DataView Web Part in SharePoint 2013

    I hope this is a simple question but I'm stumped. What is the status of the DataView Web Part in SharePoint 2013? I am working on a migration of our site from SP 2010 to SP 2013. We previously had a DataView Web Part which is used widely on our site. It
    is not showing up and the error is "Type type could not be found or it is not registered as safe." When I try to add a new copy of this web part, I get the message "The type Microsoft.SharePoint.WebPartPages.DataViewWebPart....PublicKeyToen=71e9bce111e9429c"
    could not be found or it is not registered as safe.
    I'm not the Farm Admin is this case, so my question is whether the web.config needs to be edited to make this usable, or something else perhaps. Or am I simply out of luck using this in SharePoint 2013.
    Any help is appreciated!

    I suspect you will need to compare the web.config files on the new 2013 system to the ones on the old 2010 system and evaluate the differences.  The safecontrol entry is in my default 2013 environment.  If its not in yours it will need to be added.
     For any web part to work you need three things:
    A safe control entry in the web.config
    A .dll that contains the code that generates the html displayed when the web part is rendered.
    A .dwp or .webpart file in the web part gallery that contains info about what class and .dll to use
    #3 should be in the content database you are migrating.  YOu'll need to verify that #1 & #2 exist.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Content search webpart in sharepoint 2013 paging is not not working for anonymous users on IE9, IE10 and Firefox

    Dear All,
     Issue in CQWP paging on IE9, IE10 and Firefox
    We have created CQWP in SharePoint 2013 for images rollup and its paging perfectly working for authenticated users on all browsers but it’s not working on public facing site for specific browser
     while we are trying to click on paging getting 
    something went wrong and correlation  with correlation id
    We did log analysis and getting different kind of problem description on every click some time contents authentications error, sometime memory
    Once I put webpart inside the  <!--MS:<ZoneTemplate>--> its completely stop working
      so we placed webpart outside  <!--MS:<ZoneTemplate>--> currently
    Strange point is its working on IE11. Please help us its highly appreciated
    Code Details :
    <div data-name="WebPartZone">
    <!--CS: Start Web Part Zone Snippet-->
    <!--SPM:<%@Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>-->
    <div xmlns:ie="ie">
    <!--MS:<WebPartPages:WebPartZone runat="server" AllowPersonalization="false" ID="x5d2d1828b2b44612974f72caded2bcd3" FrameType="TitleBarOnly" Orientation="Vertical">-->
    <!--MS:<ZoneTemplate>-->
    <!--ME:</ZoneTemplate>-->
    <!--ME:</WebPartPages:WebPartZone>-->
    </div>
    <!--CE: End Web Part Zone Snippet-->
    <!--CS: Start Content Search Snippet-->
    <!--SPM:<%@Register Tagprefix="spsswc" 
    Namespace="Microsoft.Office.Server.Search.WebControls" Assembly="Microsoft.Office.Server.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>-->
    <!--SPM:<%@Register Tagprefix="a2e8ead9d" 
    Namespace="Microsoft.Office.Server.Search.WebControls" Assembly="Microsoft.Office.Server.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>-->
                            <!--MS:<spsswc:ContentBySearchWebPart runat="server" AlwaysRenderOnServer="False"
    ResultType="" NumberOfItems="12" DataProviderJSON="{&#34;QueryGroupName&#34;:&#34;Default&#34;,&#34;QueryPropertiesTemplateUrl&#34;:&#34;sitesearch://webroot&#34;,&#34;IgnoreQueryPropertiesTemplateUrl&#34;:false,&#34;SourceID&#34;:&#34;8413cd39-2156-4e00-b54d-11efd9abdb89&#34;,&#34;SourceName&#34;:&#34;Local
    SharePoint Results&#34;,&#34;SourceLevel&#34;:&#34;Ssa&#34;,&#34;CollapseSpecification&#34;:&#34;&#34;,&#34;QueryTemplate&#34;:&#34;path:\&#34;http://thepubauth.viacom.com/sites/vh1press/Shows/Show assets\&#34;
    PictureURL:\&#34;/sites/vh1press/Shows/Show assets/{Page.ID}/\&#34; (ContentTypeId:0x0101009148F5A04DDD49cbA7127AADA5FB792B00AADE34325A8B49cdA8BB4DB53328F214* OR ContentTypeId:0x010102*)&#34;,&#34;FallbackSort&#34;:[{&#34;p&#34;:&#34;LastModifiedTime&#34;,&#34;d&#34;:1},{&#34;p&#34;:&#34;Title&#34;,&#34;d&#34;:0}],&#34;FallbackSortJson&#34;:&#34;[{\&#34;p\&#34;:\&#34;LastModifiedTime\&#34;,\&#34;d\&#34;:1},{\&#34;p\&#34;:\&#34;Title\&#34;,\&#34;d\&#34;:0}]&#34;,&#34;RankRules&#34;:null,&#34;RankRulesJson&#34;:&#34;null&#34;,&#34;AsynchronousResultRetrieval&#34;:false,&#34;SendContentBeforeQuery&#34;:true,&#34;BatchClientQuery&#34;:true,&#34;FallbackLanguage&#34;:-1,&#34;FallbackRankingModelID&#34;:&#34;&#34;,&#34;EnableStemming&#34;:true,&#34;EnablePhonetic&#34;:false,&#34;EnableNicknames&#34;:false,&#34;EnableInterleaving&#34;:false,&#34;EnableQueryRules&#34;:true,&#34;EnableOrderingHitHighlightedProperty&#34;:false,&#34;HitHighlightedMultivaluePropertyLimit&#34;:-1,&#34;IgnoreContextualScope&#34;:true,&#34;ScopeResultsToCurrentSite&#34;:false,&#34;TrimDuplicates&#34;:false,&#34;Properties&#34;:{&#34;TryCache&#34;:true,&#34;Scope&#34;:&#34;{Site.URL}&#34;,&#34;ListId&#34;:&#34;00000000-0000-0000-0000-000000000000&#34;,&#34;UpdateLinksForCatalogItems&#34;:true,&#34;EnableStacking&#34;:true},&#34;PropertiesJson&#34;:&#34;{\&#34;TryCache\&#34;:true,\&#34;Scope\&#34;:\&#34;{Site.URL}\&#34;,\&#34;ListId\&#34;:\&#34;00000000-0000-0000-0000-000000000000\&#34;,\&#34;UpdateLinksForCatalogItems\&#34;:true,\&#34;EnableStacking\&#34;:true}&#34;,&#34;ClientType&#34;:&#34;ContentSearchRegular&#34;,&#34;UpdateAjaxNavigate&#34;:true,&#34;SummaryLength&#34;:180,&#34;DesiredSnippetLength&#34;:90,&#34;PersonalizedQuery&#34;:false,&#34;FallbackRefinementFilters&#34;:null,&#34;IgnoreStaleServerQuery&#34;:false,&#34;RenderTemplateId&#34;:&#34;DefaultDataProvider&#34;,&#34;AlternateErrorMessage&#34;:null,&#34;Title&#34;:&#34;&#34;}"
    BypassResultTypes="True" ItemTemplateId="~sitecollection/_catalogs/masterpage/Display Templates/Content Web Parts/DT_Images.js" GroupTemplateId="~sitecollection/_catalogs/masterpage/Display Templates/Content Web Parts/Group_Content.js"
    ResultsPerPage="9" SelectedPropertiesJson="[&#34;PublishingImage&#34;,&#34;PictureURL&#34;,&#34;PictureThumbnailURL&#34;,&#34;Path&#34;,&#34;Title&#34;,&#34;Description&#34;,&#34;SecondaryFileExtension&#34;,&#34;ContentTypeId&#34;]"
    HitHighlightedPropertiesJson="[&#34;Title&#34;,&#34;Path&#34;,&#34;Author&#34;,&#34;SectionNames&#34;,&#34;SiteDescription&#34;]" AvailableSortsJson="null" ShowBestBets="False" ShowPersonalFavorites="False"
    ShowDefinitions="False" ShowDidYouMean="False" PreloadedItemTemplateIdsJson="null" QueryGroupName="Default" RenderTemplateId="~sitecollection/_catalogs/masterpage/Display Templates/Content Web Parts/Control_ListWithPaging.js"
    StatesJson="{}" ServerIncludeScriptsJson="null" Title="Content Search" FrameType="None" SuppressWebPartChrome="False" Description="&#60;%$Resources:Microsoft.Office.Server.Search,CBS_Description;%&#62;"
    IsIncluded="True" ZoneID="ImportedPartZone" PartOrder="0" FrameState="Normal" AllowRemove="True" AllowZoneChange="True" AllowMinimize="True" AllowConnect="True" AllowEdit="True"
    AllowHide="True" IsVisible="True" DetailLink="" HelpLink="" HelpMode="Modeless" Dir="Default" PartImageSmall="" MissingAssembly="&#60;%$Resources:core,ImportErrorMessage;%&#62;"
    ImportErrorMessage="&#60;%$Resources:core,ImportErrorMessage;%&#62;" PartImageLarge="" IsIncludedFilter="" ExportControlledProperties="True" ConnectionID="00000000-0000-0000-0000-000000000000" ID="g_9f61c988_228e_4f91_8d67_04314f144f48"
    ChromeType="None" ExportMode="All" __MarkupType="vsattributemarkup" __WebPartId="{9f61c988-228e-4f91-8d67-04314f144f48}" WebPart="true" Height="" Width="">-->
    <!--ME:</spsswc:ContentBySearchWebPart>-->
    <!--PS: Start of READ-ONLY PREVIEW (do not modify)--><div ms-webpart-chrome-fullWidth "><div webpartid="00000000-0000-0000-0000-000000000000" haspers="true" id="WebPartWPQ1" width="100%" noindex
    " onlyformepart="true" allowdelete="false" ><div style="display: none;"></div><div componentid="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_csr"
    id="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_csr" style="display: none;"></div><noscript>&lt;div id="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_noscript"&gt;It
    looks like your browser does not have JavaScript enabled. Please turn on JavaScript and try again.&lt;/div&gt;</noscript><div id="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48"><div><div
    id="WebPartWPQ2_ChromeTitle"><span title="" id="WebPartTitleWPQ2"><h2 style="text-align:justify;"><nobr><span></span><span id="WebPartCaptionWPQ2"></span></nobr></h2></span></div><div
    webpartid="00000000-0000-0000-0000-000000000000" haspers="true" id="WebPartWPQ2" width="100%" ms-WPBorder noindex ms-wpContentDivSpace " onlyformepart="true" allowdelete="false" ><div componentid="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_ctl00_csr"
    id="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_ctl00_csr"><div id="DataProvider" name="Control"></div></div><noscript>&lt;div id="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_ctl00_noscript"&gt;It
    looks like your browser does not have JavaScript enabled. Please turn on JavaScript and try again.&lt;/div&gt;</noscript><div id="ctl00_ctl00_PlaceHolderMain_ComponentMain_ComponentPropertyGrids_g_9f61c988_228e_4f91_8d67_04314f144f48_ctl00"></div><div></div></div></div></div><div></div></div></div><!--PE:
    End of READ-ONLY PREVIEW-->
    <!--CE: End Content Search Snippet-->
          </div>

    Hi,
    In the “Property Mappings” of the Content Search Web Part, we can see that the Picture field will only display the value retrieved from “PublishingImage;PictureURL;PictureThumbnailURL”,
    because there is corresponding column in OOTB Document Library holds the valid value of a thumbnail image for a document, that’s why documents from Document Library display no thumbnail image in a Content Search Web part.
    If you want to display thumbnail images for documents of Document Library, you can add a custom Picture column to hold the thumbnail image of a document, set the “Property
    Mappings” to display this custom Picture column.
    By doing this, every time uploading a document to this library, setting a thumbnail image(provided by common users, not generated by SharePoint automatically) for
    that custom Picture column, in the Content Search Web Part, the thumbnail image will display.
    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]

  • View containing custom column works in SharePoint 2010 but crashes webpart in SharePoint 2013

    First off.. I am using SP FOUNDATION.  Secondly, I'm linking a contact library from a parent site to a view on a sub site. This works in SP 2010 but when I tried to duplicate it in our new SP 2013 site, it doesn't.
    Reproduce steps to add Parent Contact Picks to Blog Sub-Site in SP 2010 (Foundation)
    In parent site, create a contact list (add some people)
    In parent site à Site Settings
    à Site Columns … create a new Column of type “Lookup”. 
    Set the Information Source to the Contact List in step 1 with its Column = “Last Name (linked to item)” 
    Create a BLOG sub site
    BlogSite à Site Settings
    à Site Libraries and Lists
    à Posts
    à Add from existing site columns …. Select the Lookup column you created in step 2.
    BlogSite à Site Settings
    à Site Libraries and Lists
    à Posts
    à Create View à Standard View….Create a new view and select ONLY the lookup column from step 4.
    Add a new Blog post and while in the ‘New-Item’ form, make sure to select a person from the Contact list.
    Open up the details page of the new post so that only the single post shows. Edit the Page and Insert a New Web Part
    à Lists and Libraries
    à Posts.
    Edit the newly added web part and change its view to the one created above in step 5.
    Drop the down arrow to the right of the newly added web part’s title and select Connections
    à Get Filtered values From
    à Post [1] (or whatever the default Post Web part is called). Set both the “Provider” and the “Consumer” field names to “ID”.
    You will now see that whenever you open the “Details” page of any blog post, you will see the Main post (aka the original form), the normal “Add Comment” entry web part, AND 
    the new web part that show the Contact selection specific to that single post. Clicking on the Name of the contact will actually pop up the details from the parent site.
    SharePoint 2013 (Foundation)
    Now perform the exact same steps in SharePoint 2013. However you’ll notice that Step 8 above appears to work but as soon as you try and edit that web part again or move on to step 9, the newly added web part states “Unable to display this Web Part. To troubleshoot
    the problem….. Correlation ID: 52d36c9c-e7a2-509e-1d60-3df1ce53ce2d”.
    Followup: In doing some testing I determined the following..
    1 - If I adjust step #5 as to NOT select the new linked column.. it works. Oddly however, the new view works when are you just using the view by itself (/site/lists/Posts/NewViewname.aspx).
    2 - I can fix the crash by enabling the 'Server Render' option on the WebPart. This actually now shows my information however the linked field is no longer a link.
    3 - As long as it's not a Lookup type column, I can follow the same process and do not need the Server Render option. Of course these other types are not live links.
    Seems like a bug to me.

    I set "Breakline" hidden because I don't want to show this in create new item form. 
    I realized that may be the reason. So changed the column to Optional in CT and created a new calendar using that CT. then at list level CT I changed it to Hidden.  That works.   The column is available for use when modifying view.
    Thanks

  • Can i use Report viewer web part in SharePoint 2013 app to show SSRS reports?

    Can i use Report viewer web part in SharePoint 2013 app to show SSRS reports?

    SharePoint app you mean a simple sharePoint 2013 application like site, team site etc, or do you mean an App (the new feature like webPart).
    To add a SSRS Report viewver web part follow these steps
    1. Edit the page
    2. Choose insert a webpart
    3.Select SQL server Reporting -> SQL Server Reporting Services Report Viewer webpart
    4. Configure the webpart to show your .rdl files.
    (See the img below. Plz mark as answered if it helps).

  • SharePoint 2013 Query string parameter pass between visual webparts

    Hi,
    I have created one web part called Latest News in SharePoint 2013 which is
    visual web part(Sandbox Solution).
    In that, there is button called "Read More". Now when I click on that button I want to show only that item in the new page which is clicked using query string. but the data which will be shown after Read More button will be coming
    from a different Visual Web Part.
    How should I pass a query string value from one visual webpart to another visual webpart in SharePoint 2013 ?
    Could anyone please help me like how we can pass.
    Thanks in Advance.

    Hi,
    To pass information from one web part to another, we can use the consumer and provider web part with the
    IWebPartParameters interface.
    There are some articles about this topic, you can refer to them.
    http://msdn.microsoft.com/en-us/library/office/ms469765(v=office.14).aspx
    http://www.c-sharpcorner.com/UploadFile/40e97e/sharepoint-2010-connected-web-parts/
    http://underthehood.ironworks.com/2011/03/how-to-build-a-consumer-web-part-in-sharepoint-2010-using-iwebpartparameters-that-works-with-html-fo.html
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

Maybe you are looking for

  • Intermitten problem with POST to servlets

    Our java application sends a POST method to a servlet, which in turn executes an RMI method to validate a login/password stored in an oracle database. Three times in the last month, users where unable to get their login/password validated. Checking t

  • Using Wall Socket to Route internet

    I have seen a new device come out made to work with the new sling device that can route the internet using your wall electrical sockets...(home wiring) Was just wondering if you could a) use it for regular internet or is it only for that device.... b

  • Datasource creation or migration to 3.x

    Hello Gurus, I am creating a DB connect datasource .For this , the datasource which is getting created is of 7.0. But, i require a 3.x version of the datasource.Now, the system i am using is a upgraded 7.0 BW system. By default, a 3.x daatsource shou

  • Flag Material master for deletion at plant level using MM17

    Hello Everybody, Here is the issue. We are trying to flag materials for deletion using MM17. When we try to set deletion flag at client level everything looks good. But when we try to set deletion flag at plant level we are getting the following erro

  • How to export clips?

    I'm a novice at iMovie... Ive imported various clips from various tapes. I've managed to turn them all into one project and export that, great, but how do I also export the various clips individually? Currently they are in the event library, each has