好的,使用客户属性我有一个多选项选项,我已添加到管理客户网格。
$prodCode = Mage::getSingleton('eav/config')->getAttribute('customer','prod_codes');
$prodCodeOptions = $prodCode->getSource()->getAllOptions(false);
$prodOptions = array();
foreach($prodCodeOptions as $k)
$prodOptions[$k['value']] = $k['label'];
$this->addColumn('prod_codes', array(
'header' => Mage::helper('customer')->__('Product Code'),
'width' => '100',
'index' => 'prod_codes',
'type' => 'options',
'options' => $prodOptions,
'filter_condition_callback'
=> array($this, '_filterProdOptionsCondition'),
));
我的属性已添加到Grid.php顶部的集合中:
->addAttributeToSelect('prod_codes')
这是我的_filterProdOptionsCondition
方法:
protected function _filterProdOptionsCondition($collection, $column) {
if(!$value = $column->getFilter()->getValue()) {
return;
}
$this->getCollection()->addFieldToFilter('prod_codes', array('finset' => $value));
#print($collection->getSelectSql());
}
现在,如果我只选择了 ONE 选项,那么这项工作很好,但是一旦我将多个选项应用于customers属性,我将在管理网格中得到一个空白结果,不过它仍然是可搜索的。
仔细查看print($collection->getSelectSql());
未注释我发现在逗号分隔列表中返回了属性ID值。
现在我的问题已经布置了背景,是否有方法或“Magento”方式在管理网格中显示这些多选项我只是不知道?或者我是否需要简单地将逗号值展开并调用新集合来构建显示值?任何帮助赞赏!
答案 0 :(得分:5)
似乎我必须扩展Column渲染器以预期逗号值并简单地渲染它们,我很惊讶这不是内置的,因为存在创建多选项属性但没有网格显示选项的功能。
应用程序/代码/本地/法师/ Adminhtml /砌块/空间/网/列/渲染器/ Options.php
public function render(Varien_Object $row)
{
$options = $this->getColumn()->getOptions();
$showMissingOptionValues = (bool)$this->getColumn()->getShowMissingOptionValues();
if (!empty($options) && is_array($options)) {
$value = $row->getData($this->getColumn()->getIndex());
if (is_array($value)) {
$res = array();
foreach ($value as $item) {
if (isset($options[$item])) {
$res[] = $options[$item];
}
elseif ($showMissingOptionValues) {
$res[] = $item;
}
}
return implode(', ', $res);
}
elseif (isset($options[$value])) {
return $options[$value];
} elseif (is_string($value)) { // <--- MY CHANGES HERE
$values = explode(',', $value);
$returnOptions = "";
foreach($values as $k=>$v) {
$returnOptions .= $options[$v]. ", ";
}
return substr($returnOptions, 0, -2);
}
return '';
}
}