ListTemplate schema.xml so TRUE

Nothing really extraordinary about this but it might help one day.

As I was working on a schema.xml of a custom ListTemplate, I came across a pervert problem with intellisense. I was trying to turn on Enhanced RichText for one of my fields when I finally discovered what was causing the problem...

When using "\12\TEMPLATE\XML\wss.xsd" to validate your schema.xml you'll notice that for boolean values you'll get this with intellisense:


I usually use "True" or "False" but here it turned out that it only works with "TRUE" or FALSE" (case sensitive). So I changed it to:




And it worked perfectly.

Don't get confused with what intellisense says... I did and I wasted my time :)

Comments