Grouped by list not expanding in web part

Hi, apologies if the answer to this is obvious...
I have created a SP list and have created a view where the group by option is set to expanded as the default.  This works fine when you display the list itself.
However, I want to show the list in a web part but when you select the view it collapses the groups and I can't seem to get this to change.
If someone can advise me on how to fix this it would be great.

Hi,
For your issue, please edit the list web part and change the view to your list view where the group by option is set to expanded as the default:
Best Regards,
Eric
Eric Tao
TechNet Community Support

Similar Messages

  • Web Part is not visible in Web Part gallary

    Hi,
    I have developed a project in sharepoint having two web parts inside it.
    Initially, when there was only one web part in my project it was working fine. But suddenly when i added a new web part, it is not showing me web parts in a gallary. Event it is not available in web part list under Web Designer Gallaries.
    I tried with old .wsp to deployed, but still the same problem.
    On my development machine it is working with two web parts very good. but when i try to deploy that wsp on production site, it is not showing me anything in web part gallary while it was when i was working with one web part only in my project.
    Please, direct me where i am doing wrong, any possibilities?
    I did workarounds as
    1.  Check for the custom webpart feature folder under 14\TEMPLATE\FEATURES ----- Yes it exists there
    2. If the feature Scope is Site
    3. The webpart dll is deployed to GAC with Stsadm command
    4. No web part(My Custom) found here Site Action > Site Settings > Galleries > Web Parts

    in my development environment i checked in site collection feature, it isn't available in site collection feature but still i am getting those web parts in web part gallery while adding it on page.
    Also, in Production environment, feature is available in /templates/features folder after deployment, but not available in web part gallery while adding it on page.
    I tried with uploading .webpart file which is available in /templates/features production environment as i mentioned, is running for one web part. Not for second web part and giving me security error.
    As, uploading .webpart file is not feasible solution, please tell me how could i do that with .wsp file?
    please tell me what could be another workaround. 
     

  • Did not found advanced web part gallery and options in web part categories when tried to add a webpart in webpart page

    HI
    I created a web part page and try to add a web part
    in web part categories  i did not found advanced web part gallery and options 
    how i  found this optino
    adil

    Hi,
    In SharePoint 2010, the “Advanced Web Part Gallery and Options” is gone, you can add web part into page in SharePoint 2010 like this:
    Add, move, minimize, or delete a Web Part from a page
    https://support.office.com/en-ca/article/Add-move-minimize-or-delete-a-Web-Part-from-a-page-d5d533c3-db66-4105-a5e8-8ae15fb60087
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • After adding list view into the web part page, the items and list control ribbon is not activated.

    I created new webpart page and added one list view web part into the page.
    However I can see the ITEMS and LIST tabs on ribbon area, but all the buttons are deactivated.
    Do I have to activate any feature for this or any settings are needed for the webpart?
    I already have full permission for this site.
    For your easy understand I added the screenshot.

    Thanks for you advice.
    However I am currently using the context menu and edit link in the view.
    My Client keep complaining about the ribbon is not activated even thought it works fine in the SharePoint 2010.

  • Display Calendar in list view in a Web Part

    Hi -
    I have a meeting list in a web part.  It displays the calendar view.  I want it to display the list of current events.  I have a current event view set up.  I do not want the user to have to switch the view themselves, I want the current
    event view to populate in the web part when they arrive on the page, not the calendar.  I tried switching the calender view default to my current event view, and no luck.
    What am I doing wrong?
    Thanks,
    Amy

    Do you mean when you click to go to the actual calendar, or have you added the calendar as a web part to another page?
    If it's the latter, you should just be able to edit the web part and change the "Selected View" option to Current Events, (Or whatever view) and then click OK, and save/check in/publish the page or whatever you have set up.
    If this is what you've already tried, please elaborate on "no luck." What happens?

  • Discussion Board item not displaying in web part page

    Hi, I am using SharePoint 2013 on-premise. I created new Discussion Board name as "Discuss" and displayed in
    Management View as shown below.
    The list item showing properly without any issues.
    But when i am adding this web-part into web part page with Management
    view. The items are not displaying.
    What is the issue.? How to display the items here.?
    Thanks in advance.

    Hi Ismaiel,
    The Discussion Board is in same site.
    If displaying the web-part page with Subject view the items are visible.
    But when i am changing the view to Management the items are hidden.

  • How to hide title of the list on Content Query Web Part?

    I am trying to display the description on content query web part from a list. Even when I leave the Title field blank on "Presentation" section (editing the web part), the title shows up with the link along with the description. Is there any way
    to hide the title or leave it as blank? Any help is highly appreciated.
    Thanks,
    Evilar

    Hi Evilar,
    Thanks for posting your issue, Kindly use the below mentioned CSS Style in ID of table tag to fix this issue
    #hide-title .ms-viewheadertr {
    display: none;
    }OR
    For Content Query Web part (WebPartWPQX) Note; X is a number of your web part.#WebPartWPQX .ms-viewheadertr
      display: none;
      }So only titles of the webpart within the WebPartWPQX will be hided.
    Also, browse below mentioned URL for more details
    http://www.balestra.be/2013/08/hide-column-titles-from-sharepoint-lists-libraries.html
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Can not import this web part

    dll is in the GAC. 
    safe control is listed correctly.  Not sure why.  Code is listed below.  any help is appreciated.
    using System;
    using System.ComponentModel;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.WebControls;
    namespace VendorDropdown.VisualWebPart1
        [ToolboxItemAttribute(false)]
        public class VisualWebPart1 : WebPart
               // Visual Studio might automatically update this path when you change the Visual Web Part project item.
                 private const string _ascxPath = @"~/_CONTROLTEMPLATES/VendorDropdown/VisualWebPart1/VisualWebPart1UserControl.ascx";
               String drpListSelected = "";
               DropDownList drpList = new DropDownList();
               protected override void CreateChildControls()
                   Control control = Page.LoadControl(_ascxPath);
                   SPSite site = SPContext.Current.Site;
                   SPWeb web = SPContext.Current.Web;
                   SPList list1 = web.Lists["Vendor"];
                   var listitems = list1.Fields["Company"];
                   drpList.DataSource = listitems;
                   drpList.DataTextField = "Company";
                   drpList.DataValueField = "ID";
                   drpList.DataBind();
                   Controls.Add(control);
                   drpList.SelectedIndexChanged += new EventHandler(this.ddlAllLists_SelectedIndexChanged);
               void ddlAllLists_SelectedIndexChanged(object sender, EventArgs e)
                   try
                       //set the selected value and logic
                       drpListSelected = drpList.SelectedValue;
                       this.Page.Response.Redirect("~/Lists/Vendor/DispFormVendor.aspx?iD="
    + drpListSelected);
                   catch (Exception ex)
                       //  LogManger.WriteLog(" Error in EventCalendarWebPart.cs ddlAllLists_SelectedIndexChanged()" + ex.ToString());
            protected override void Render(HtmlTextWriter output)
              EnsureChildControls();
              base.RenderContents(output);

    What is the exact steps you are following
    Did you run the application as admin
    Check below:
    http://stackoverflow.com/questions/120928/sharepoint-error-cannot-import-web-part
    Make sure web part is created in 64-bit system
    http://sharepoint.stackexchange.com/questions/11820/custom-web-part-deployment-produces-cannot-import-this-webpart-error
    Ensure your feature actually contains the correct version of webpart/assembly.
    Ensure safecontrol is correctly defined with correct version
    Now, Delete all your solution related webparts from the webpart gallery. (This is what really helped me). You can use a ps script for that.
    Redeploy solution. (This will activate the features, but not add the webparts to webpart gallery).
    Deactivate the webpart feature either via UI or Disable-SPFeature command (i used ps)
    Activate the webpart feature (Enable-SPFeature). This will bring all the new updated webparts to the web part gallery.
    Check below:
    http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2008/10/06/troubleshooting-cannot-import-web-part-error.aspx
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/5f6d9e1a-315f-49ea-96d3-824edb642cd7/unable-to-add-selected-web-parts-cannot-import-this-web-part
    f it is NOT the public key token problem (fully qualified assemby name) then try:
    got to site settings -> webparts -> (If your webpart is in the list delete it) click on NEW -> check the webpart in the list, check overwrite, click on add to catalog.
    If this helped you resolve your issue, please mark it Answered

  • Create a DL group which does not expand to see members in outlook 2010

    Hi 
    I have 2010 exchange server and client side outlook 2010. A special request come from my management, to create a distribution list where the users are  restricted not  to see who are the members of that group. 
    Is is possible to restrict the expansion of the this particular  DL group?
    Thanks
    Venky

    Sorry, but hiding the membership of a static distribution group isn't possible -- at least not with Exchange.
    http://blogs.msdn.com/b/dgoldman/archive/2007/12/14/why-hiding-distribution-memberships-in-exchange-2007-is-not-supported.aspx
    You can, however, manipulate the permissions on a group with ADUC:
    http://exchangepedia.com/2007/11/how-to-hide-distribution-group-membership.html
    However, following that advice may prevent even the owner of the DL from seeing (or managing) the membership of the group.
    Which leads to more extensive manipulation (which allows for ADDing members but not for removing them):
    http://blogs.technet.com/b/kamleshk/archive/2012/02/01/managing-distribution-groups-with-un-hidden-membership.aspx
    Even with all of that, it's still possible (with persistence) to discover the membership -- the address book still shows the groups you're a member of. And let's not forget the use of read receipts. :-)
    All in all, the best way to deal with this is to use a dynamic distribution group where there are no static members.
    --- Rich Matheisen MCSE&I, Exchange MVP

  • Mail: Group addresses should not expand

    Suddenly, Mail chose to expand group addresses, even though the relevant box in Preferences —> Composing is unchecked.
    I have ‘checked’ the box, quit Mail, relaunched Mail, composed a test message and send it (of course all the addresses were there). Then unchecked the box, quit Mail, relaunched, and composed another test message. Still, all the addresses were there...
    Any suggestions?
    MacBook Pro, MacOS 10.10

    Klaus Blume wrote:
    Mmmhh... The last group email I have sent was almost a year ago April 1, 2014. It worked then. I can't remember what OS we were on then, but I keep my system software always up to the minute.
    For me, hiding the recipients of a group is vital. There is always some i**ot who hits 'reply all,' and kicks lose an avalanche of emails...
    Thanks for updating me on that bug, though.
    That's why the email protocol has always had Bcc instead of some hack crrated by an OS developer.

  • Current User Filter not available in the Add Web Parts list - Sharepoint 2007

    Hi everybody,
    I'm trying to build a copy (or auto-populate) function on a list.
    I did all the coding changes, now I need to add a web part to my list called Current User Filter.
    Problem is, the Current User Filter is not in the Web Part list at all!
    How can I add it ? I looked in the Central Admin Panel and did not see anything.
    Thanks in advance!

    What version of SharePoint are you using?  I think that this is s MOSS webpart, so if you're using the WSS version of the product, you're probably out of luck.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Row limit in declarative list view web part

    Hi,
    Imagine you are in a scenario where you develop a custom web template or a site definition. Page Layouts with web part zones are being provisioned and out of them, decoratively web part pages are being created and populated with web parts. So something like:
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <Module Name="XXXProjectPages" Url="$Resources:osrvcore,List_Pages_UrlName;" Path="" SetupPath="FEATURES\XXX_Intranet_PMO_PageLayouts\">
    <!-- Home -->
    <File Url="FullPageLayout\XXXFullPageLayout.aspx" Name="Default.aspx" Type="GhostableInLibrary" IgnoreIfAlreadyExists="FALSE" ReplaceContent="TRUE" Level="Published">
    <Property Name="Title" Value="Team &amp; Collaboration" />
    <Property Name="ContentType" Value="$Resources:cmscore,contenttype_page_name;" />
    <Property Name="PublishingPageLayout" Value="~SiteCollection/_catalogs/masterpage/XXXFullPageLayout.aspx, ~SiteCollection/_catalogs/masterpage/XXXFullPageLayout.aspx" />
    <!-- Latest News -->
    <View List="Lists/Announcements" BaseViewID="102" WebPartZoneID="wpZone1" WebPartOrder="2">
    <![CDATA[
    <WebPart xmlns="http://schemas.microsoft.com/WebPart/v2">
    <Assembly>Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c</Assembly>
    <TypeName>Microsoft.SharePoint.WebPartPages.ListViewWebPart</TypeName>
    <Title>Latest News</Title>
    <FrameType>TitleBarOnly</FrameType>
    </WebPart>
    ]]>
    </View>
    For simplicity, let's assume that we are working with instances of OOB list definitions, such as Announcements or Document Library. So far so good. And now the question...
    In my understanding if you want to do something as simple as limiting the number of items returned, or specifying a custom view criteria (filter/sorting/grouping, whatever) or just remove the toolbar, you have to go as far as provisioning an ENTIRE LIST
    DEFINITION, defining your custom View in it (which declares the toolbar type, row limit and View) and then reference this new View by its BaseViewID. Is that correct?
    Is there really no other, simpler way, of 'provisioning' and referencing a new view, to an existing list instance, along with the
    Module -> File -> View element? I see a couple of logical options:
    1) I would imagine such metadata could be stored in the web part and not the actual list. i.e. the web parts sends a CAML query to the list, based on the View metadata stored in it.
    2) As we know, when you Edit page and configure the View for a List View Web Part on the page, that view is stored as a new hidden view in the actual list (i.e. if you have two list view web parts that reference that list, you will have two additional hidden
    views). Then why can't we provision such (hidden) view along with the List View WebPart when we declare it and create the page? It could be created on first access of the page, or during the page
    provisioning.
    Another option could be the XmlDefinition property of the XsltListViewWebPart, but
    apparently it is being ignored. I have also tried using the 'CustomSchema' property of the ListInstance, but it totally makes no sense because:
    a) You cannot define more than one view in it, i.e. you have to override the OOB view that comes with the definition (lol?!)
    b) You are supposed to overwrite the entire list definition, instead of simply upgrading parts of it
    So, let me elaborate: if I want to have a <View> (ListViewWebPart) in my Page and this view to have some custom criteria, I have to provision an entire List Definition, is that correct? This is crazy.

    Hi Hristo,
    According to your description, my understanding is that you want to know if you can use <view> tag in the list view web part to define the row limit of list view web part.
    Per my knowledge, you can define rowlimit element in the view element for list view web part directly not necessary to modify the entire list definition.
    View Element:
    http://msdn.microsoft.com/en-us/library/office/ms438338(v=office.15).aspx
    Also, if you want to do more customization, you can still orverride the xslt.
    More reference:
    http://www.glynblogs.com/2011/04/overriding-the-presentation-of-an-xslt-list-view-web-part.html
    http://unorig.com/2012/08/15/format-a-list-web-part-with-xslt/
    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

  • Web Part Zone personalization

    Using SharePoint 2013;
    Is there an option out of the box to personalize Web Part Zone like we have for Web Parts. We have a requirement to create a Web Part page in which users can personalize by adding the Web Parts they wanted to see.
    Scenario: User 1 login in to the site and adds WebPart1 to this page & User 2 adds WebPart2 to the same page. Each users should not see the Web Part that are added by other users.
    --Cheers

    Ok, thanks for your replies
    I'm planning to go with OOB option with few customizations. Below is the plan, please suggest me if you have any ideas
    Personalize this Page - On pages the site contributors can add the Web Parts to create a personal view of the page. For example, a Web Part can be added to a page and viewable by only those users. When users personalize a page, others will
    continue to view the public version or the shared version, or their own personalized version. Once a page is personalized, we have an option to view either your personal version or the shared version.
    Create web part page “My Page”
    Check 'Add/Remove Personal Web Parts' & 'Update Personal Web Parts' permission level at Web Application level and user group level in order to enable personalize this page menu in the site for the user.
    Restrict personal page from showing all web parts in the Add Web Part list by assigning appropriate permission to Web Part Gallery. As this is admin defined as per our requirement
    Enable Personalize this Page option only to the custom “My Page”. Hide this menu for all the other pages.
    --Cheers

  • Custom web part in SharePoint Online for "User segments"

    Hi Experts,
    I was refferd here from the SharePoine Online community. http://community.office365.com/en-us/f/148/p/278071/851153.aspx 
    I was following this article to implement user segment in SharePoint Online http://blogs.msdn.com/b/adaptive_experiences_in_sharepoint_2013/archive/2012/11/14/set-up-user-segmentation-to-drive-adaptive-experiences-in-a-product-catalog-in-sharepoint-2013.aspx 
    However, this seems to require a custom web part to be build and deployed in SharePoint Online.
    Anyone has made user segment work in SharePoint Online? Anyone has done this custom web part before?
    Thank you,
    Aswath NS

    By default the Site Users web part shows all the users and groups who have been give direct permission to the site.  That would not include anyone who was given permission by being added to a group.  You can modify the web part settings to show
    a list of people in the Members group of the site or any other specific group.  But there is no setting to show all the users who have access.
    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.

  • Custom SharePoint Master Page with Content Editor Web Part.

    Hi All,
    I have created a custom SharePoint Master Page to apply within my SharePoint Site and it was a success.
    When I want to add the content I have to use the script editor web part and add HTML snippets. Then the styles will reflect correctly. But when I use content editor web part some of the styles do not reflect. Lets assume that if I want to add a H2 with the
    custom color, the color do not show in the ribbon. And how SharePoint know that this is an <h2> and reflect the other styles like padding, margin and so on.
    Please can someone help me to solve this.
    Thanks and regards,
    Chiranthaka

    Hi,
    From your description, my understanding is that you want to add CSS code in your customized Master Page with content editor web part.
    I tested your issue in SharePoint Designer, and I added CSS code successfully.
    I accomplish your requirement with steps below:
    Add a content editor web part in a list and add some CSS code in the web part.
    Open SharePoint Designer, enter the master page.
    Insert a content editor web part under INSERT tab in the Ribbon.
    Open the list that have edited in step1 in the SharePoint Designer.
    Copy code from the list to the Master Page as the screenshot below.
    The screenshot below is my result:
    In addition, why do not you add CSS code just with <style> tag in your page? Just add CSS code as below(in this method, you do not need any web part.):
    <style>
    h2{
    background-color:green;
    </style>
    Best Regards,
    Vincent Han
    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]

Maybe you are looking for