function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Ross.ax1563Ross.ax1563 

apex:tabpanel causing havoc with timeline component

Hi Everyone

I've installed the Salesforce Labs Timeline from AppExchange (https://appexchange.salesforce.com/listingDetail?listingId=a0N3000000B54hhEAB) - a really neat timeline. It works great except when I embed it in a VF page with <apex:tabpanel> : If I do this, then the timeline Filter never works. Everytime I click on it I see Chrome's console reports "Uncaught TypeError: Cannot read property 'slideDown'". I have tried all combinations of jquery.noconfilct to no avail. ANY HELP WILL BE MOST SINCERELY APPRECIATED!

This is what my VF Page looks like

<apex:page sidebar="false" showheader="false" >
<apex:form >

<apex:tabPanel headerAlignment="right"  tabClass="activeTab" inactiveTabClass="inactiveTab"  switchType="client"   id="theTabPanel">
	<apex:tab label="Patient Overview" name="overview" >
    	  <slt:Timeline id="timeline" value="{!$CurrentPage.Parameters.Id}" csat="false" />
	</apex:tab>

	<apex:tab label="Tab2"  >
	</apex:tab>

	<apex:tab label="Tab3"  >
	</apex:tab>

</apex:tabPanel>


</apex:form>
</apex:page>


logontokartiklogontokartik
May I know if you created a local "TimelineEvents" Visualforce page as listed in the instructions document?  (Page 15)

https://appexchange.salesforce.com/servlet/servlet.FileDownload?file=00P3000000K1bfFEAR


If not please let me know and I will try replicating it in my org

Thank you
Ross.ax1563Ross.ax1563
Hi 

Yes I have created the TimeLineEvents VF page as per the manual - the timeline also displays 100% - it is just the filter that does not respond (when it is on page with apex:tabpanel

Thanks
Ross