Pergunta

Eu gostaria de saber se há uma maneira de aumentar o limite de caracteres de 255 caracteres na coluna de título de uma lista.

Limite de caracteres

Se não, existe alguma maneira de ignorar o título (é um campo obrigatório por padrão) e adicionar uma área de texto em vez de um menu de item anexado a ele?

Foi útil?

Solução

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.

Outras dicas

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"  />
Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top