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.
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.
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
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
Hi Bob,
http://spreadindia.osmprojects.org/index.php?option=com_chronoconnectivity&Itemid=615
This is the URL of that page. you can check when u filter table with below dropdown and click go button the slideshow Disappears.
I also added the Slideshow to url: index.php?option=com_chronoconnectivity&connectionname=supportastudent. But still I cant see the modules.
Regards,
Shoaib.
http://spreadindia.osmprojects.org/index.php?option=com_chronoconnectivity&Itemid=615
This is the URL of that page. you can check when u filter table with below dropdown and click go button the slideshow Disappears.
I also added the Slideshow to url: index.php?option=com_chronoconnectivity&connectionname=supportastudent. But still I cant see the modules.
Regards,
Shoaib.
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
With luck that will do the trick.
Bob
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
This topic is locked and no more replies can be posted.