override einer einzigen Funktion in extjs für Backend

Hallo liebe Forum-leser, bei mir muss eine einzige Funktion “Shopware.apps.Blog.view.blog.detail.Main” in Blog überschrieben werden. ich habe entsprechende tut und alle Forumbeiträge durchgelesen. es läuft bei mir jedoch nicht. im bootstrap.php: public function install(){ // Add Blog fields to backend configuration $this-\>subscribeEvent('Enlight\_Controller\_Action\_PostDispatch\_Backend\_Blog', 'onLoadBackendBlog' ); return true; } public function onLoadBackendBlog(Enlight\_Event\_EventArgs $args) { $request = $args-\>getSubject()-\>Request(); $response = $args-\>getSubject()-\>Response(); // Load this code only in backend if(!$request-\>isDispatched() || $response-\>isException() || ($request-\>getModuleName()!='backend' && $request-\>getModuleName()!="blog")) { return; } $view = $args-\>getSubject()-\>View(); if (!$view-\>hasTemplate()) { return; } $this-\>Application()-\>Template()-\>addTemplateDir( $this-\>Path() . 'Views/' ); if ($args-\>getRequest()-\>getActionName() === 'getDetail') { $view-\>extendsTemplate("backend/blog/view/blog/detail/my\_main.js"); } in Views/backend/blog/view/blog/detail/my_main.js: //{namespace name=backend/blog/view/blog} //{block name="backend/blog/view/blog/detail" append} Ext.define('Shopware.apps.Blog.view.blog.detail.MyMain', { override: 'Shopware.apps.Blog.view.blog.detail.Main', createContentForm:function () { var me = this; return [{ xtype: 'textarea', labelWidth:120, minWidth:250, height:40, labelStyle:'font-weight: 700;', fieldLabel:'{s name=detail/main/field/short\_description}Short description{/s}', allowBlank:false, required:true, name:'shortDescription' }, { xtype: 'container', html: '{s name=detail/main/field/short\_description/help}The short description will be displayed in the listing of the store front.{/s}', margin: '0 0 8 125', style: 'font-size: 11px; color: #999; font-style: italic;' }, { xtype: 'tinymce', height: 370, name: 'description' }, { xtype: 'tinymce', height: 370, name: 'attribute[attribute6]' } ] } }); //{/block} event wurde korrekt erkannt und läuft. aber meine funktion in extjs nicht. vielen Dank im voraus für eure Vorschläge! LG Samuel referenzen: http://wiki.shopware.de/Fortgeschritten … 1_871.html programmierung-f56/backend-modul-erweitern-extjs-controller-wird-nicht-geladen-t11386.html

hallo lieber Forum-Moderator, habt ihr evtl. einen Rat? Vielen Dank. LG Samuel