How to set value of checkbox in magento custom module

后端 未结 2 681
我寻月下人不归
我寻月下人不归 2020-12-21 02:56

How do I set the value of a checkbox in a magento custom module? Also, how do I set the name of the checkbox to the value in an array?

Here is the code I use to put

2条回答
  •  爱一瞬间的悲伤
    2020-12-21 03:13

    Check this code:

    $this->addColumn('myname', array(
                                     'type' => 'checkbox',
                                     'name'=> 'myname',
                                     'values' => $this->_getid(),
                                     'align'   => 'center',
                                     'index' => 'entity_id'
                     ));
    

    Replace myname with your required field name. Also getid is your code for dynamic values in this array.

提交回复
热议问题