Removing the "Categories" field from an Issue Tracking list in SharePoint - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:32:48Z http://stackoverflow.com/feeds/question/124301 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/124301/removing-the-categories-field-from-an-issue-tracking-list-in-sharepoint 5 Removing the "Categories" field from an Issue Tracking list in SharePoint Bryan Friedman 2008-09-23T22:24:48Z 2009-09-17T22:04:07Z <p>When I create an Issue Tracking list in SharePoint, I am unable to remove the Categories choice field that it adds by default as part of the Issue content type. I looked in the list definition but I can't find anything explicit about not allowing the column to be deleted. Does anybody know why the Delete button isn't showing up? Is there a way to delete this field?</p> http://stackoverflow.com/questions/124301/removing-the-categories-field-from-an-issue-tracking-list-in-sharepoint/124434#124434 0 Answer by Nat for Removing the "Categories" field from an Issue Tracking list in SharePoint Nat 2008-09-23T22:54:48Z 2008-09-23T22:54:48Z <p>I know that I have had a similar issue with field in a variety of fields where once the field is added, it is not possible to remove it. </p> <p>Sometimes it is possible to create code to delete the field, but in most of the situations I have come across we have had to hide the field to prevent it from appearing.</p> <p>This requires moving to using Powershell and the SharePoint object model to make the changes.</p> <p>In most of our implementations, we have found it much better to create a custom solution with a custom feature that adds the custom lists and fields using the XML format for doing this. A list template can then be create exactly for what you need.</p> <p>Doing it this way gives us more control over the result in a repeatable manner.</p> http://stackoverflow.com/questions/124301/removing-the-categories-field-from-an-issue-tracking-list-in-sharepoint/124520#124520 0 Answer by Toni Frankola for Removing the "Categories" field from an Issue Tracking list in SharePoint Toni Frankola 2008-09-23T23:19:11Z 2008-09-23T23:19:11Z <ol> <li>Go to: Portal > Site Settings > Site Content Type Gallery > Site Content Type </li> <li>Select Issue Content Type</li> <li>Select Categories</li> <li>Click Remove button on the new page</li> </ol> <p>Worked for me, just tried it.</p> http://stackoverflow.com/questions/124301/removing-the-categories-field-from-an-issue-tracking-list-in-sharepoint/193405#193405 3 Answer by Peter Seale for Removing the "Categories" field from an Issue Tracking list in SharePoint Peter Seale 2008-10-10T23:56:18Z 2008-10-10T23:56:18Z <p>You must learn the art of SharePoint. You're asking for a non-code, unintrusive way to customize the Categories field on an Issues list. This is impossible.</p> <p>The Issues list in particular has some behavior associated with it--it's not just a custom list with a Categories field. If you want, you can build your own custom list similar to the Issues list, and leave out the Categories field. But you'll notice your custom list doesn't have all the behavior.</p> <p>I'm not sure which option I suggest. The Content Type solution from Frenki is intrusive but works. The PowerShell solution from Nat will work (just hide the field, don't delete it...). If you make your own customized Issues list from a custom list, you'll miss the Issues list behavior.</p> <p>But there's no perfect solution. This is something you have to accept with a large, already-baked framework like SharePoint.</p> http://stackoverflow.com/questions/124301/removing-the-categories-field-from-an-issue-tracking-list-in-sharepoint/565791#565791 0 Answer by David Brown for Removing the "Categories" field from an Issue Tracking list in SharePoint David Brown 2009-02-19T15:19:24Z 2009-02-19T15:19:24Z <p>Toni's solution did work, but be careful- this will also remove the category field from EVERY ISSUES TRACKING LIST being used currently and any future ones created.</p> http://stackoverflow.com/questions/124301/removing-the-categories-field-from-an-issue-tracking-list-in-sharepoint/1441551#1441551 -1 Answer by Jim Harrison for Removing the "Categories" field from an Issue Tracking list in SharePoint Jim Harrison 2009-09-17T22:04:07Z 2009-09-17T22:04:07Z <p>Does anyone know of any consequences of removing the category field from the Issues List by removing it from the Site Content Type Gallery? I understand that this will remove it from the Issues Tracking List template, but I assume you can always add it back in as either a Site Column or a local column if you need a category field in an issues list in the future. Correct? Am I missing something?</p>