Ajaxifyを使用してAJAXでカテゴリリストページに製品ビューブロックをロードしようとしています。すべてが正常に機能する唯一の問題は、オプションボックス(childhtml "container1")が正しく読み込まれないことです。オプションは表示されません。
誰もがこれを経験したことがありますか、おそらくこのようなことを試しましたか?を使用してコントローラーにアクティブな製品を設定します
$productId = (int) $this->getRequest()->getParam('product_id');
Mage::helper('catalog/product')->initProduct($productId, $this);
レイアウトをレンダリングする前。
それは、オプションがcatalog.xmlの他の部分のビューに追加されるという事実と関係があると思います
[...]
<PRODUCT_TYPE_configurable translate="label" module="catalog">
<label>Catalog Product View (Configurable)</label>
<reference name="product.info">
<block type="catalog/product_view_type_configurable" name="product.info.configurable" as="product_type_data" template="catalog/product/view/type/default.phtml">
<block type="core/text_list" name="product.info.configurable.extra" as="product_type_data_extra" translate="label">
<label>Product Extra Info</label>
</block>
</block>
</reference>
<reference name="product.info.options.wrapper">
<block type="catalog/product_view_type_configurable" name="product.info.options.configurable" as="options_configurable" before="-" template="catalog/product/view/type/options/configurable.phtml"/>
</reference>
</PRODUCT_TYPE_configurable>
[...]
しかし、私は正確な問題が何であるかわかりません。
誰かが私を正しい方向に向けてくれることを願っています。
よろしく、サンダーマンジェル