I'm almost sure this problem is on my system since it works on drupalhub.org, but I can't make List View show my video thumbnails in a list, though it works with Table View great! To clarify, the thumbnail *will* appear, but only if there are no other fields present. I have toggled all the views switches for the embedded video field, but no luck.

Anyway, here is an export of my view (below). Anything obvious to look into? I've already tried switching my theme to Garland and starting with a brand new view (test2 below), but same issue. Worst-case scenario, I'll export as a table and theme it to make it look like a list, so if it's not obvious, feel free to let me know and we can close this issue...

$view = new stdClass();
$view->name = 'test2';
$view->description = 'test';
$view->access = array (
);
$view->view_args_php = '';
$view->page = TRUE;
$view->page_title = 'test';
$view->page_header = '';
$view->page_header_format = '1';
$view->page_footer = '';
$view->page_footer_format = '1';
$view->page_empty = '';
$view->page_empty_format = '1';
$view->page_type = 'list';
$view->url = 'test';
$view->use_pager = TRUE;
$view->nodes_per_page = '10';
$view->sort = array (
);
$view->argument = array (
);
$view->field = array (
array (
'tablename' => 'node_data_field_footbag_video',
'field' => 'field_footbag_video_embed',
'label' => '',
'handler' => 'content_views_field_handler_ungroup',
'options' => 'video_thumbnail',
),
array (
'tablename' => 'node',
'field' => 'type',
'label' => '',
),
array (
'tablename' => 'node',
'field' => 'created',
'label' => '',
'handler' => 'views_handler_field_date_small',
),
);
$view->filter = array (
);
$view->exposed_filter = array (
);
$view->requires = array(node_data_field_footbag_video, node);
$views[$view->name] = $view;

Comments

alex ua’s picture

Status: Active » Postponed (maintainer needs more info)

Does this work with the same filters when all you change is from a list to a table view? Can you try it in 5.x-1.x-dev?