Slideshow Disappears on Go button.

shoaib 21 Sep, 2010
Hi,

I using CC. I have a table which gets filter on the dropdown values. On clicking the Go button to filter the table the slideshow in that page Disappears.

I have the Slideshow in the module position. As the Pagenavigates to the another on filtering the slideshow disappears.

I also tried by adding the Slideshow to that url also by having external link



See the attachments.
shoaib 22 Sep, 2010
Friendly Bump.
shoaib 24 Sep, 2010
Friendly Bump.
GreyHead 25 Sep, 2010
Hi shoaib,

Sorry, I've been away for a few days.

I can't answer this without more information. How are you displaying the slideshow? Can you post a link to the listing page?

Bob
GreyHead 27 Sep, 2010
Hi shoaib,

Ah OK, I understand. ChronoConnectivity doesn't do the URL routing very well so loses the Itemid.

You can fix this by hacking the components/com_connectitivity/libraries/connection.php Look for the function getFormTag() around line 278 and replace it with this version
    function getFormTag($connectionname)
    {
        global $mainframe;
        
        $database =& JFactory::getDBO();
        $MyConnection =& CFChronoConnection::getInstance($connectionname);
        $action = 'index.php?option=com_chronoconnectivity&connectionname='.$MyConnection->connectionrow->name;
        $itemid = JRequest::getInt('Itemid', '', 'get');
        if ( $itemid ) {
            $action .= '&Itemid='.$itemid;
        }
        return "<form action='$action' method='post' name='connectivity' >";        
    }

With luck that will do the trick.

Bob
shoaib 01 Oct, 2010
Thanks Bob this is what I want.

Shoaib😀
This topic is locked and no more replies can be posted.