我从https://github.com/lecterror/cakephp-filter-plugin安装了一个插件过滤器。
如何重命名下拉栏中的值?
现在我可以选择:
[ ]
[0]
[1]
我需要的是:
[ ]
[Agent]
[Investor]
.
public $filters = array(
'index' => array(
'Model' => array(
'Model.Tablename' => array('label' => 'Find'),
'Model.Tablename' => array(
'label' => 'Position type',
'type' => 'select',
'selectOptions' => array (
0 => 'Agent',
1 => 'Investor'
)
)
)
)
);
在选择器类型中,我想将 0 重命名为 Agent,将 1 重命名为 Investor。