Is it possible to override template located here /app/design/adminhtml/default/default/template/
(e.g. /app/design/adminhtml/default/default/template/customer/edit/js.phtml
) by creating a new module in community pool?
So the thing is that I don't want to override it by placing the file (or anything) in local pool.
Is it possible to do that by extending of appropriate block class or something like that?
I've created the same file in /app/design/adminhtml/default/my_directory/template/
and extended Mage_Adminhtml_Block_Customer_Edit
class in /app/code/community/MyCompany/MyModule/Block/Adminhtml/Customer/Edit.php
and don't have an idea of how to solve this.