カスタム管理ページ「デバイス」のカスタム レイアウト ページを読み込もうとしています。動いていない !:)
<layout version="0.1.0">
<adminhtml_devices_index_index>
<reference name="content">
<block type="adminhtml/template" name="index" output="toHtml" template="devices/index.phtml"/>
</reference>
</adminhtml_devices_index_index>
</layout>
これが私の app/design/adminhtml/default/default/layout/devices.xml の XML である場合
知っておく必要があるさまざまなファイル/属性は何ですか?
また、 type='adminhtml/template' は実際には何を指していますか?
注:私のコントローラーコードは
public function indexAction() {
$this->loadLayout();
$this->renderLayout();
}