Package wicket.contrib.tinymce

Examples of 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);
    }
View Full Code Here


{
  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);
  }
View Full Code Here

TOP

Related Classes of wicket.contrib.tinymce.InPlaceEditComponent

Copyright © 2018 www.massapicom. 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.