Hi,
When I have a screen file defined like:
$row=5
$structure['main']['fields'][$row] = array('list1'=>'list1');
The following call works as expected:
$replace_array['list1'] = array('mailing_list'=> 'Mailing List');
replaceScreenColumns($replace_array);
If I use the following screen file definition the function does not work.
$row=5;
$structure['main']['fields'][$row][] = array('label'=>'list1');
$structure['main']['fields'][$row++][] = array('field'=>'list1');
Stepping through the code it looks like the replaceScreenColumns function only handles the first case for the screen file format and not the second.
Is there a different function to use or am I using it wrong?
Cheers,
Kyle Brost
----
www.softelephant.com