Apply Dynamic Loading in block configuration does not stick
| Project: | Dynamic Views |
| Version: | 5.x-1.x-dev |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
This does not seem to work for me.
I've created a view named arts_tab with Page type Dynamic Full Node with 1 node per page, and with Block type Dynamic Teaser List 5 nodes per block with more. And then I have placed the block Dynamic: arts_tab in main content area and checked Apply Dynamic Loading in the block configuration, but when I go to the View page, i see the full node of the first node followed by the teaser list. If I click one of the teaser titles, it reloads but after that clicking the titles does not do anything.
When I go back and look at the Block configuration, I see that the Apply Dynamic Loading is no longer checked. I think this setting is not sticking.
I have turned off that block for the time being so you cannot look at that live, but here is my exported view:
$view = new stdClass();
$view->name = 'arts_tabs';
$view->description = 'term: artstab';
$view->access = array (
);
$view->view_args_php = '';
$view->page = TRUE;
$view->page_title = 'arts_tabs';
$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 = 'dynamic_node';
$view->url = 'arts_tabs';
$view->use_pager = TRUE;
$view->nodes_per_page = '1';
$view->block = TRUE;
$view->block_title = 'arts_tabs';
$view->block_header = '';
$view->block_header_format = '1';
$view->block_footer = '';
$view->block_footer_format = '1';
$view->block_empty = '';
$view->block_empty_format = '1';
$view->block_type = 'dynamic_teaser';
$view->nodes_per_block = '5';
$view->block_more = TRUE;
$view->block_use_page_header = FALSE;
$view->block_use_page_footer = FALSE;
$view->block_use_page_empty = FALSE;
$view->sort = array (
);
$view->argument = array (
);
$view->field = array (
);
$view->filter = array (
array (
'tablename' => 'term_node_14',
'field' => 'tid',
'operator' => 'AND',
'options' => '',
'value' => array (
),
),
);
$view->exposed_filter = array (
);
$view->requires = array(term_node_14);
$views[$view->name] = $view;
