org.wicketstuff.egrid.column.EditableCellPanel Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of wicketstuff-editable-grid Show documentation
                Show all versions of wicketstuff-editable-grid Show documentation
Add/Edit/Delete functionality all at once
                
             The newest version!
        
        package org.wicketstuff.egrid.column;
import org.apache.wicket.markup.html.form.FormComponent;
import org.apache.wicket.markup.html.panel.Panel;
/**
 * 
 * @author Nadeem Mohammad
 *
 */
public abstract class EditableCellPanel extends Panel
{
	private static final long serialVersionUID = 1L;
	public abstract FormComponent> getEditableComponent();
	public EditableCellPanel(String id)
	{
		super(id);
	}
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy