Hello!

I have "editviewdefs.php" file. And regular construction in it
'displayParams'=>array(
'field_to_name_array' => array(
"aa" => "bb",
...
It works fine.

And now I need to populate "aa" to "bb" and "bb2"
'displayParams'=>array(
'field_to_name_array' => array(
"aa" => array("bb","bb2"),
...
this code doesn't work as expected

I think there is must be another way to make that population.