5

我被困在这个问题上,基本上我需要的是一种自动扩展包含选中子类别节点的类别树节点的方法。

代码中的入口点是 js/extjs/ext-tree-checkbox.js'catalog/category/tree.phtml'

可以用expand()js方法扩展一个节点,扩展所有节点并不难,但这会使页面变慢太多。

更新:

我已经测试了以下解决方案:

  1. 更改js/extjs/ext-tree-checkbox.js渲染方法添加此:

    var tree = n.getOwnerTree();
        if (tree){
            expandNodeIds =  tree.expandNodeIds.split(',');
            for (i in expandNodeIds) 
            {
                if (n.id == expandNodeIds[i])
                    n.expand();
            }
        }
    

此解决方案有效,但它破坏了(不再显示)权限树

4

3 回答 3

4

我做了一些错误修复和重构,并将@obscures 答案打包成一个小扩展。在 GitHub 上尝试一下:Kiwigrid_AutoExpandProductCategoryTree

于 2014-11-20T14:17:46.460 回答
2

因为:

 - Google sees this as a solution

我的解决方案在 Php 方面,在 Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Categories 类中。

// start Added stuff
protected $_ubProductCategoriesParents;

public function getUbProductCategories()
{
    if (is_null($this->_ubProductCategoriesParents)) {
        $this->_ubProductCategoriesParents = array();
        $this->_ubProductCategoriesParents = array();
        foreach ($this->getCategoryIds() as $id) {
            $storeId = (int) $this->getRequest()->getParam('store');
            $path = Mage::getResourceModel('catalog/category')
                ->getAttributeRawValue($id, 'path', $storeId); // no model->load ever ever ever
            if (empty($path)) {
                $path = "";
            }
            $parentsIds = explode("/", $path);
            if (!(is_array($parentsIds) && count($parentsIds) > 0)) {
                $parentsIds = array();
            }
            $this->_ubProductCategoriesParents = array_unique(array_merge($this->_ubProductCategoriesParents, $parentsIds));
        }

        //Mage::log(print_r($this->_ubProductCategoriesParents, true));
    }

    return $this->_ubProductCategoriesParents;
}
// end Added stuff

// magento core function from class
protected function _getNodeJson($node, $level = 1)
{
    $item = parent::_getNodeJson($node, $level);

    if ($this->_isParentSelectedCategory($node)) {
        $item['expanded'] = true;
    }

    // added new if statement
    if (!(isset($item['expanded']) && $item['expanded'] == true) && array_search($node->getId(), $this->getUbProductCategories()) !== false) {
        $item['expanded'] = true;
    }

    if (in_array($node->getId(), $this->getCategoryIds())) {
        $item['checked'] = true;
    }

    if ($this->isReadonly()) {
        $item['disabled'] = true;
    }

    return $item;
}

现在将上面的代码放在重写类中。

谢谢

于 2014-04-22T21:30:36.360 回答
1

这解决了所有问题

 var tree = n.getOwnerTree();
    if (tree){
        expandNodeIds =  tree.expandNodeIds;

        if (expandNodeIds) {
            expandNodeIds = expandNodeIds.split(',');
            for (i in expandNodeIds) 
            {
                if (n.id == expandNodeIds[i])
                    n.expand();
            }
        }

render在方法中添加上面的代码js/extjs/ext-tree-checkbox.js

于 2012-10-29T05:23:01.397 回答