Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I made a custom note field named "Content_Feedback" without specifying Allow Unlimited Length in document libraries

<Field
    ID="{C9C90E3A-85AB-492E-9E47-C7A520A7DD0D}"
    Name="Content_Feedback"
    DisplayName="Content Feedback"
    Type="Note"
    NumLines="8" 
    RichText="FALSE"
    Group="AXA">
</Field>

enter image description here It should thus be limited to 255 characters since as far as I know, this property is responsible from changing it from a regular single line of text field definition.

The field is used by a content type which is not overriding this definition and finally by a custom list, redeclaring the field as it.

Unfortunately, it's possible to enter more than 255 characters in it. I made several tests on my dev machine ("works on my machine syndrome") back at the implementation time and anything above 255 characters was successfully & automatically trimmed. Now it's no more the case.

  • Are you aware of anything in a recent CU that would have changed this (got this on both dec 2011 cu et June 2012 cu)
  • Are you aware of anything that would prevent this limit ?
  • Did I misunderstand the Unlimited Lenght in Document Libraries ?

Thanks for your support

share|improve this question
Why not use MaxLength="255"? msdn.microsoft.com/en-us/library/aa979575.aspx – rjcup3 Aug 8 '12 at 13:02
Thanks for the link. I would have if I was aware of that unexpected - for me - behavior of unlimited note field when omitting the unlimited length in document library. I don't think it has to do with a custom list for a document library. Thanks a lot for your input anyway. – Francois Verbeeck Aug 8 '12 at 14:52

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.