views:

1139

answers:

1

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.

+3  A: 

I had the Similar Issue. You need to do that same thing for the LinkTitle as well to get Name in the Default View. Though in the <ViewFields> <FieldRef> tag you have an option for DisplayName it didnt work as expected. Only way I found is to

<Field Name="LinkTitle" DisplayName="Serial Number" Type="Text" />
Kusek
That does indeed do the trick - thx!
Philipp Schmid