How can you make your custom property of a webpart in SharePoint 2007, sort to the top of the property pane? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T11:45:12Zhttp://stackoverflow.com/feeds/question/753918http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/753918/how-can-you-make-your-custom-property-of-a-webpart-in-sharepoint-2007-sort-to-th0How can you make your custom property of a webpart in SharePoint 2007, sort to the top of the property pane?program2473652009-04-15T22:01:54Z2009-04-15T22:28:00Z
<p>In SharePoint 2007, is it possible to programmatically sort the custom property you created to the top of the property pane? So when someone edits your webpart it would show at the top, rather than at the bottom by default, so that the user wouldn't have to scroll to the bottom?</p>
<p>Here's my code, for reference:</p>
<pre><code> private string _strMainFolder = "Reports";
[WebBrowsable(true)]
[WebDisplayName("Reports SharePoint List Name")]
[SPWebCategoryName("Report WebPart Configuration")]
[WebPartStorage(Storage.Shared)]
[WebDescription("Enter the SharePoint List's name that you want to use.")]
[Personalizable(PersonalizationScope.Shared)]
public string strMainFolder
{
get { return _strMainFolder; }
set { _strMainFolder = value; }
}
</code></pre>
http://stackoverflow.com/questions/753918/how-can-you-make-your-custom-property-of-a-webpart-in-sharepoint-2007-sort-to-th/753993#7539931Answer by vinny for How can you make your custom property of a webpart in SharePoint 2007, sort to the top of the property pane?vinny2009-04-15T22:28:00Z2009-04-15T22:28:00Z<p>When you add your CustomPropertyToolPart to the array, give it a lower (0) index than the WebPartToolPart. It should render in the order the items are added to the array.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.webpartpages.webpart.gettoolparts.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.webpartpages.webpart.gettoolparts.aspx</a></p>