Snapper
Snapper

Reputation: 686

How to extend Sitecore WFFM to include label?

I want to create a field in WFFM to be able to add some text (with RTE). I've found something similar but it doesn't allow Rich Text Editor.

Any ideas?

Upvotes: 0

Views: 150

Answers (1)

Anton
Anton

Reputation: 9961

You should use another VisualFieldType attribute for your label. VisualFieldType(typeof(CssClassField)) is not enough. It should be:

[VisualFieldType(typeof(TextAreaField))]

Examples, how to use it you can get here and here.

Upvotes: 2

Related Questions