org.wicketstuff.tinymce6.ajax.TinyMceAjaxButton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicketstuff-tinymce6 Show documentation
Show all versions of wicketstuff-tinymce6 Show documentation
Adds support for WYSIWYG editing (using TinyMce6) to Wicket
The newest version!
package org.wicketstuff.tinymce6.ajax;
import org.apache.wicket.ajax.markup.html.form.AjaxButton;
import org.apache.wicket.markup.html.form.Form;
/**
* An AjaxButton with the TinyMceAjaxSubmitModifier
*
* @author Sander van Faassen
*/
public abstract class TinyMceAjaxButton extends AjaxButton
{
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Constructor
*
* @param id
* id
* @param form
* form
*/
public TinyMceAjaxButton(String id, Form form)
{
super(id, form);
add(new TinyMceAjaxSubmitModifier());
}
/**
* Constructor
*
* @param id
* id
*/
public TinyMceAjaxButton(String id)
{
super(id);
add(new TinyMceAjaxSubmitModifier());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy