管理ページにテンプレートを挿入しました
<?xml version="1.0"?>
<layout>
<adminhtml_catalog_product_attribute_edit>
<reference name="head">
<action method="addJs"><js>extension/sctipt.js</js></action>
</reference>
<reference name="head">
<block type="page/html" output="toHtml" name="custom_script" template="extension/script.phtml" before="-"/>
</reference>
</adminhtml_catalog_product_attribute_edit>
これは私のphtmlファイルを挿入しますが、実際には機能していません。カタログ入力タイプが「custominput」(新しい属性ページ)の場合にオプションパネルを表示するのはなぜかわかりません。ここにmytemplateがあります。
<div>
<script type="text/javascript">
alert('hallooooooo');
if($('frontend_input')){
Event.observe($('frontend_input'), 'change', youBoxCheck);
}
function youBoxCheck(){
if($('matage-options-panel')){
var panel = $('matage-options-panel');
if($('frontend_input').value=='youbox')){
panel.show();
}
else {
panel.hide();
}
}
}
</script>
アラートも実行されないのですが、何が問題なのですか?