add an image field to your column table.
make a new global below called "catimage" with code...
Code:
sub { my $tags = shift;
my $file = $DB->table('Category')->file_info ('Image', $tags->{ID});
my ($url) = $file =~ m,/path/to/your/category/images/(.*),;
return $url;
}
and that should do the trick.
its working for me.
r