private Component modelValue;
public InlineTinyMCEPage()
{
Form<Void> form = new Form<>("form");
InPlaceEditComponent editableComponent = new InPlaceEditComponent("editableComponent",
"<p><b>Click me</b> and <i>edit me</i> with <font color=\"red\">tinymce</font>. "
+ "This is a new feature introduced with version 4.</p>");
form.add(editableComponent);
form.add(modelValue = new Label("modelValue", editableComponent.getModel()));
modelValue.setEscapeModelStrings(false);
modelValue.setOutputMarkupId(true);
form.add(new TinyMceAjaxButton("submit")