1779 Posts in 582 Topics by 556 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 839 Views |
-
Whats the Best way to store formatted text in a form?

4 December 2009 at 1:26pm
Hey Crew.
I've been trying to store html formatted text from a form so that users entering a 'description' will have their text formatting saved on entry:
public function SubmissionForm() {
$fields = new FieldSet();$fields->push(new TextareaField('Description', 'Description'));
$actions = new FieldSet();
$actions->push(new FormAction('SubmissionFormAction', 'Submit'));return new Form($this, 'SubmissionForm', $fields, $actions);
}In the back end of the CMS I can use HTMLEditorField without issue. But I don't want A: The user to be able to use a WYSIWYG editor and B: Know that their input is being saved as HTML text.
Whats the best way to get this?
A really good example is this Content field I'm filling out right now! hah.
-
Re: Whats the Best way to store formatted text in a form?

9 December 2009 at 12:21am
Is this something thats straight forward or is it a more complicated topic?
| 839 Views | ||
|
Page:
1
|
Go to Top |

