Backend-Plugin: Texteditor in Detail View

Guten Morgen ich versuche vergebens einen Editor / Texteditor / WYSIWYG in der Detail View meines Backend Plugins zu kriegen. Normale Textinputs sind drin, aber ich benötige neben den Textinputs halt auch Checkboxen oder auch den Texteditor/Textarea. Meine Views sehen aktuell so aus: Detail.js Ext.define('Shopware.apps.Glossar.view.detail.Glossar', { extend: 'Shopware.model.Container', padding: 20, configure: function() { return { Controller: 'Glossar' } } }); Model Ext.define('Shopware.apps.Glossar.model.Glossar', { extend: 'Shopware.data.Model', configure: function() { return { controller: 'Glossar', detail: 'Shopware.apps.Glossar.view.detail.Glossar' } }, fields: [{ name:'id', type:'int' }, { name:'title', type:'string' }, { name:'content', type:'string' }] }); Wäre cool wenn mir da Jemand mal was sagen würde. Danke!

Anyone? :frowning:

Ungetestet auf dein Beispiel übertragen: fields: [{ name:'id', type:'int' }, { name:'title', type:'string' }, content: { name: 'content', xtype: 'tinymce' }] Wenn nicht, dann schau mal hier: http://wiki.shopware.de/Shopware-Backen … 8_871.html

So, ich hab es dann endlich geschafft. Ging so: configure: function() { return { Controller: 'ControllerName', fieldSets: [{ title: 'Eintrag', layout: 'fit', fields: { title: 'Titel', content: { fieldLabel: 'Inhalt', xtype: 'tinymce' } } }] }; }