November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Just use a string property with uihint textarea.
http://world.episerver.com/Documentation/Items/Developers-Guide/EPiServer-CMS/7/Content/Properties/Using-String-Properties/
http://world.episerver.com/Blogs/Alexander-Haneng/Dates/2012/7/How-to-define-properties-in-EPiServer-7---A-quick-reference/
For example
[Display(
Name = "Heading",
Description = "",
GroupName = SystemTabNames.Content,
Order = 10)]
[UIHint(UIHint.Textarea)]
public virtual string Heading { get; set; }
Good luck!
This is perhaps a very basic question but I can't seem to figure it out. What data type do you use when you need a plain textbox page property in code? I don't want any formatting, no p/div tags added between line breaks, just a multiline textbox.