All
I have created a custom webpart for my list instance. This webpart is inserted within a RenderTemplate for the list. I have several Jquery Libraries loading within the webpart. For the most part it seems that it works but none of the tabs work they actually redirect to entire different page with the same contents. I am not sure if I am doing this correctly or what but below is my template and custom webpart.
Here is the web part
<SharePointWebControls:CssLink runat="server" DefaultUrl="/_layouts/css/jquery-ui-1.8.23.custom.css" />
$(function () { $("#accordion").accordion(); });
<div id="Accordion" style="font-size: x-small;">
<h3>
<a href="#">Required Information</a></h3>
<div id="RequiredInformation">
<b>Hello World</b>
</div>
<h3>
<a href="#">Manager's Approval</a></h3>
<div id="ManagersApproval">
<b>hello World</b>
</div>
<h3>
<a href="#">IS Approval</a></h3>
<div id="ISApproval">
<b>Hello World</b>
</div>
Here is the template
<SharePoint:RenderingTemplate ID="CyberQueryRequestTemplate" runat="server">
<Template>
<span id='part1'>
<SharePoint:InformationBar ID="InformationBar1" runat="server" />
<div id="listFormToolBarTop">
<wssuc:ToolBar CssClass="ms-formtoolbar" ID="toolBarTbltop" RightButtonSeparator=" "
runat="server">
<Template_RightButtons>
<SharePoint:NextPageButton runat="server" />
<SharePoint:SaveButton runat="server" />
<SharePoint:GoBackButton runat="server" />
</Template_RightButtons>
</wssuc:ToolBar>
</div>
<SharePoint:FormToolBar ID="FormToolBar1" runat="server" />
<SharePoint:ItemValidationFailedMessage ID="ItemValidationFailedMessage1" runat="server" />
<table class="ms-formtable" style="margin-top: 8px;" border="0" cellpadding="0" cellspacing="0"
width="100%">
<SharePoint:ChangeContentType ID="ChangeContentType1" runat="server" />
<SharePoint:FolderFormFields ID="FolderFormFields1" runat="server" />
<muc:CQRTDesign ID="EditForm1" runat="server" />
<SharePoint:ApprovalStatus ID="ApprovalStatus1" runat="server" />
<SharePoint:FormComponent ID="FormComponent1" TemplateName="AttachmentRows" runat="server" />
</table>
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td class="ms-formline">
<img src="/_layouts/images/blank.gif" width='1' height='1' alt="" />
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" width="100%" style="padding-top: 7px">
<tr>
<td width="100%">
<SharePoint:ItemHiddenVersion ID="ItemHiddenVersion1" runat="server" />
<SharePoint:ParentInformationField ID="ParentInformationField1" runat="server" />
<SharePoint:InitContentType ID="InitContentType1" runat="server" />
<wssuc:ToolBar CssClass="ms-formtoolbar" ID="toolBarTbl" RightButtonSeparator=" "
runat="server">
<Template_Buttons>
<SharePoint:CreatedModifiedInfo runat="server" />
</Template_Buttons>
<Template_RightButtons>
<SharePoint:SaveButton runat="server" />
<SharePoint:GoBackButton runat="server" />
</Template_RightButtons>
</wssuc:ToolBar>
</td>
</tr>
</table>
</span>
<SharePoint:AttachmentUpload ID="AttachmentUpload1" runat="server" />
<div>
My template</div>
</Template>