I tried to switch the link format from Pager format to Clean format, which works good for page views, but not for the Mini Calendar block.

I need this feature to trigger the results given by page view, which is showing events by a contextual filter (date: start date of the field_event_date). That filter is set to provide the raw value from URL (path component 4). The filter can be watched working after clicking on a month's name in mini calendars's page navigation.

http://www.jumpp.de/leistungen/events

Comments

kreatIL’s picture

Solved my problem by doing a little workaround:
I added a PHP-Code to the view's contextual filter, which returns the variable passed by the calendar pager's query string.

Example: if the querystring looks like this:
?mini=2012-08
… then configure the contextual filter like that:
"When the filter value is NOT in the URL
Display all results for the specified field
Provide default value
PHP-Code"

$date= $_GET['mini'];
if ($date) return $date;
else return date_format(date_now(), 'Y-m');
Neslee Canil Pinto’s picture

Issue summary: View changes
Status: Active » Closed (cannot reproduce)