10447 Posts in 2223 Topics by 1719 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1595 Views |
-
Problems with ModelAdmin & HtmlEditorField (SS 2.3.2)

5 August 2009 at 4:52am Last edited: 5 August 2009 4:53am
Hi!
I just have the problems, that images are not stored, when I want to save my DataObject.
Has any one simular problems?
This is my Model
class MagazinModelAdmin extends ModelAdmin {
static $managed_models = array(
'ContentDataObject'
);static $url_segment = 'eosmagazin'; // will be linked as /admin/products
static $menu_title = 'Magazin Content Manager';}
This is my getCMSFields:
$fields = new FieldSet(
new TabSet("Root",
new TabSet("Content",
new Tab('Main',
new PopupDateTimeField("ShowOn", "Erscheinungsdatum"),
new PopupDateTimeField("HideOn", "Ausblendungdatum"),
new CheckboxField("Disabled", "Verstecken"),
new DropdownField("ClassName", 'Content Type', $this->getContentTypeClasses('ContentDataObject')),
new TextField("Title", "Titel"),
new TextField("Subtitle", "Untertitel"),
new CategorizationSetField("Categories", "Kategorien", $contentList),
new TextareaField("Teaser", 'Teaser'),
new ImageField("TeaserImage", "TeaserBild"),
new HtmlEditorField("Text", 'Text'),
new TextField("Author", "Autor vom Magazin-Artikel")
)
)
)
);By the way, the save buttons are on top of the Image-Sidebar in FF, IE and GChrome...
Cheers,
Malte
-
Re: Problems with ModelAdmin & HtmlEditorField (SS 2.3.2)

6 August 2009 at 9:59pm
Seems to be related to http://open.silverstripe.com/ticket/3586
| 1595 Views | ||
|
Page:
1
|
Go to Top |

