* java.lang.String, org.apache.wicket.model.IModel)
*/
protected FormComponent newEditor(MarkupContainer parent, String componentId, IModel model)
{
TextArea editor = new TextArea(componentId, model);
editor.add(new AttributeModifier("rows", new AbstractReadOnlyModel()
{
private static final long serialVersionUID = 1L;
public Object getObject()
{
return new Integer(rows);
}
}));
editor.add(new AttributeModifier("cols", new AbstractReadOnlyModel()
{
private static final long serialVersionUID = 1L;
public Object getObject()
{