Search code examples
sharepointwindows-sharepoint-serviceswss-3.0web-parts

How to add a new WebPart in a specific Group after it is deployed


I am constantly writing custom WebParts but after I deploy them, they always get added to the "Miscellaneous" category. How do I add a WebPart to a specific category?

The category that I am referring to here is the one we see in the "Add Web Parts..." pop up, which is activated when the "Add a Web Part" is clicked on a zone.

Thanks


Solution

  • You need to update your web part manifest file and add the following:

    <property Name="Group" Value="Custom" />
    

    Follow the instructions here for details.