Package wicket.contrib.examples.tinymce

Source Code of wicket.contrib.examples.tinymce.InlineTinyMCEPage

package wicket.contrib.examples.tinymce;

import wicket.contrib.tinymce.InPlaceEditComponent;

public class InlineTinyMCEPage extends TinyMCEBasePage
{
  private static final long serialVersionUID = 1L;

  public InlineTinyMCEPage()
  {
    InPlaceEditComponent component = new InPlaceEditComponent("editable",
      "<p><b>Click me</b> and <i>edit me</i> with <font color=\"red\">tinymce</font>. "
        + "Afterwards, click save button to update this text with your changes!</p>");
    add(component);
  }
}
TOP

Related Classes of wicket.contrib.examples.tinymce.InlineTinyMCEPage

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.