vote up 1 vote down star

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.

flag

80% accept rate

1 Answer

vote up 2 vote down check

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" />
link|flag
That does indeed do the trick - thx! – Philipp Schmid Aug 13 at 18:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.