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に名前変更します。