gpt4 book ai didi

magento - 如何在客户网格中呈现/格式化自定义字段 - 后端 Magento 1.6

转载 作者:行者123 更新时间:2023-12-04 01:23:59 25 4
gpt4 key购买 nike

有人可以帮我吗?我在 magento 后端管理页面的客户网格中添加了一些自定义字段,这些字段是选择字段,但我似乎无法找到一种在网格中显示“标签”而不是我试图找到的“值”的方法此页面的渲染器,但没有运气......

他们在客户信息页面中呈现正常(请查看屏幕截图)

Customer Grid Sreenshot

enter image description here

我发现这篇文章非常有帮助,但不知道我需要写什么才能显示标签内容? http://inchoo.net/ecommerce/magento/how-to-add-custom-renderer-for-a-custom-column-in-magento-grid/

提前致谢

最佳答案

您不需要任何渲染器来显示这些值。这是你应该做的:

$boyGirlOptions = array(
array('value' => 1, 'label' => 'Boy'),
array('value' => 2, 'label' => 'Girl'),
); // or you can fetch dynamically
$this->addColumn('boy_or_girl', array(
'header' => Mage::helper('your-module')->__('Boy or Girl'),
'index' => 'boy_or_girl',
'type' => 'options',
'options' => $boyGirlOptions,
'align' => 'left',
));

$sourceOptions = array(
array('value' => 1, 'value' => 'Google'),
array('value' => 2, 'value' => 'Yahoo'),
//...
); //or you can fetch dynamically
$this->addColumn('where_did', array(
'header' => Mage::helper('your-module')->__('Where Did?'),
'index' => 'where_did',
'type' => 'options',
'options' => $sourceOptions,
'align' => 'left',
));

是的,您需要使用下拉类型选项,网格值将自动获取标签而不是值(id)。
希望这会有所帮助。

关于magento - 如何在客户网格中呈现/格式化自定义字段 - 后端 Magento 1.6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8969836/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com