I am defining a custom list content type for SharePoint (using VSeWSS 1.3 and schema.xml).
I want to change the display name of the default title field ('Title') to 'Serial Number':
<Fields>
<Field Name="Title" DisplayName="Serial Number" Type="Text" />
</Fields>
I am using the LinkTitle column in my definition of the default view for this list (in schema.xml). However, after creating an instance of this custom list type and creating a new item, the first column still shows 'Title' instead of 'Serial Number'.
I want to reuse the Title column so the user can access the items action menu from the serial number column.