Reputation: 686
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.
WFFM
Rich Text Editor
Any ideas?
Upvotes: 0
Views: 150
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