[ic] prepend to PageSelectField

Paul Jordan interchange-users@icdevgroup.org
Tue Dec 24 12:28:01 2002


Hi List

4.9.4 (Mysql) Right now I use in catalog.cfg:

PageSelectField    prod_group

I am trying to do somehting like:

PageSelectField  <<EOR
sub {
   my $fly = $Tag->field(prod_group);
   my $newfly =~ "f_" . "$fly";
   return $newfly;
}
EOR

So if prod_group was let's say 'image' then it would look for the
flypage 'f_image'

Does anyone know if it is possible to prepend a value to
PageSelectField? I need to prepend 'f_' for several reasons. My above
attempt(s) have been fruitless. I only assume something like the above
was possible... if someone could point me in the direction of how to go
about this, I am sure I culd figure out the rest.

Thanks and Happy Holidays!

Paul