Package org.wicketstuff.yui.markup.html.editor

Examples of org.wicketstuff.yui.markup.html.editor.YuiSimpleEditor


public class YuiSimpleEditorPage extends WicketExamplePage {
   
    public YuiSimpleEditorPage() {
        Model model = new Model("This <i>is</i> some <b>content</b> - feel free to edit it!");
        Form form = new Form("someForm");
        form.add(new YuiSimpleEditor("yuiSimpleEditor", model));
        add(form);
    }
View Full Code Here

TOP

Related Classes of org.wicketstuff.yui.markup.html.editor.YuiSimpleEditor

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.