now i understand a bit more, but creating a whole new page template is a bit over the top, all you need is a parameter for the layout setting tmpl. so thats where it got me confused.
looking at the sourcecode (jform[params][template]) i see you are using the global joomla core variable "template" as a template parameter (template1 and template)? can this be done ?
because this same param is also the way joomla changes between templates. so because you are using it in datafeeds, it will give errors when its called via an url like this;
devakantieportal.nl/2-middellandse+zee/i...ameer?template=dummy
versus this:
devakantieportal.nl/2-middellandse+zee/i...meer?template=atomic
am i correct?, that you need will to change that param into a less conflicting name?
it cant fetch the datafeeds template dummy view because it is looking for the joomla template called dummy, not the default_dummy.php file so it is loading a full backup, but without the joomla template. (ehm why?)
another way to make grid/list/thumb requests is by coding param options in the template index itself. but iam still trying to make that one work.
like (they do with the templatecolor options in beez)
$grid = $this->params->template('dummy');
$list = $this->params->template('list');
i have also tried the joomla approach they offer for components view and layout by copying and naming the map items (naming it grid)inside /components/com_datafeeds/views, but i get a 500 error on the site level when do
[strike]?option=com_datafeeds&view=grid[/strike] not working
so it has to be something like
?option=com_datafeeds&view=items&layout=dummy|full|grid|list|etc.. (not tested)
back 2 the testlab