return null;
}
public Editor<?> newPropertyEditor(PropertyHaver ph, String propName) throws EditorNotFound {
Editor<?> ed = null;
PropertyInfo prop = ph.getProperties().get(propName);
// Window.alert("ajjaja: "+prop.getEditorId());
if (prop != null && Util.notNull(prop.getEditorId())) {
ed = newEditorNamed(prop.getEditorId());
}
if (prop != null && prop.getType() != null && ed == null)
ed = newEditor(prop.getType());
return ed;
}