Imagefield support would be wonderful! At the moment "only" the table data are available, but no rendered image.

Comments

kasalla’s picture

Workaround:

Add a field "fid" to the view.
Install http://drupal.org/project/views_php module, add a field global->php to the view and insert following code:

<?php 
$filepath = db_query("SELECT uri FROM {file_managed} WHERE fid = :fid", array(':fid' => $row->field_bild_fid_raw))->fetchField();
print theme('image', array('path' => $filepath)); #optionally add alt-tag and other stuff.

?>

Checking if there´s a valid fid should go by a regular view filter and not by an if-statement.