Magento - 属性“输入类型”复选框

时间:2011-10-18 18:51:34

标签: magento input attributes checkbox

我见过类似的问题,但我没有找到答案: How can I get my custom backend Magento Customer Checkbox Attribute to save my selection?

$installer->addAttribute('catalog_product', 'tip', array(
    'group'         => 'ISM',
    'input'         => 'checkbox',
    'type'          => 'int',
    'label'         => 'TIP',
    'visible'       => 1,
    'source'        => 'eav/entity_attribute_source_boolean',
    'required'      => 0,
    'user_defined' => 1,
    'searchable' => 0,
    'filterable' => 0,
    'comparable'    => 0,
    'visible_on_front' => 0,
    'visible_in_advanced_search'  => 0,
    'is_html_allowed_on_front' => 0,
    'global'        => 1,
    'used_in_product_listing' => 0,
    'is_html_allowed_on_front' => 1
));

我创建了一个属性,但在编辑保存或创建保存产品时它并没有保存该值。

1 个答案:

答案 0 :(得分:0)

使用'input'作为int因为您始终存储复选框'0'或'1'的值。对于源代码,您已经使用了0或1的核心选项boolean。