0
我有一個從https://github.com/lecterror/cakephp-filter-plugin安裝的插件篩選器。Cakephp插件篩選器重命名選擇
如何重命名下拉欄中的值?
現在,我可以選擇之間:
[ ]
[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。