Question

J'aimerais savoir s'il existe un moyen d'augmenter la limite de caractères de 255 caractères sur la colonne Titre d'une liste.

limite de caractère

Si non, existe-t-il un moyen de contourner le titre (est un champ requis par défaut) et ajoutez une zone de texte à la place d'un menu d'élément ci-joint?

Était-ce utile?

La solution

For a list, you can follow these steps:

1) Go to List settings > Advanced Settings > Allow Management of Content Types = Yes

2) Click on the content type (e.g. Item)

3) Click on Title column and select Hidden

Bear in mind that removing (hiding) the title is like shooting yourself in the foot.

SharePoint uses a weighted ranking search model and the Title carries the highest weight. Effectively, you are hurting your search results.

Just add a new field called "Description" if you need more space.

Autres conseils

The maximum character limit for "Single line of text" column is 255, ie why you cannot increase character limit for Title column. You can create another column which will be a Multi line text column(will support more than 255 chars), and you have to attach "Linked to item" option to that column.For that you will have to edit the default view of the List in SharePoint Designer and add the below line in the ViewFields section of XsltListViewWebPart

<FieldRef Name="ColumnName" linkToItem="TRUE"  />
Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top