API Questions on Kentico API.
Version 6.x > API > Learn About <cms:JQueryTabContainer ID="jtc" runat="server"> View modes: 
User avatar
Member
Member
patel_divyesh8252-yahoo.co - 7/29/2013 4:05:51 AM
   
Learn About <cms:JQueryTabContainer ID="jtc" runat="server">
Hello

I am new to Kentico,
I am using kentico 6.0 trial version

I want to know that how
<cms:JQueryTabContainer ID="jtc" runat="server">
works with example

Thanx

User avatar
Kentico Customer Success
Kentico Customer Success
kentico_martind2 - 7/30/2013 4:58:21 PM
   
RE:Learn About <cms:JQueryTabContainer ID="jtc" runat="server">
Hello,

In this case I would recommend you to take a look for example at the following file:
\CMSModules\Categories\Controls\Categories.ascx or
\CMSModules\MediaLibrary\Controls\MediaLibrary\FolderActions\EditFolder.ascx

Where you will find the code of real usage of this control:
<cms:JQueryTabContainer ID="pnlTabs" runat="server" CssClass="Dialog_Tabs LightTabs BreadTabs">
<cms:JQueryTab ID="tabCategories" runat="server">
<ContentTemplate>
<div class="PageContent">
... some content
</div>
</ContentTemplate>
</cms:JQueryTab>
<cms:JQueryTab ID="tabGeneral" runat="server">
<ContentTemplate>
... some control
</ContentTemplate>
</cms:JQueryTab>
<cms:JQueryTab ID="tabDocuments" runat="server">
<ContentTemplate>
<div class="HeaderSeparator">
 </div>
<div class="PageContent">
... multiple contents... etc
</div>
</ContentTemplate>
</cms:JQueryTab>
</cms:JQueryTabContainer>

JQueryTabContainer control consists of separated JQueryTab elements which have ContentTemplate and in this template you can use the regular CMS, ASP and HTML elements/controls.

Best Regards,
Martin danko

User avatar
Member
Member
patel_divyesh8252-yahoo.co - 8/1/2013 8:30:02 AM
   
RE:Learn About <cms:JQueryTabContainer ID="jtc" runat="server">
Hi kentico_martind2

Thank You Very Much For Your Reply

Regards,
Divyesh Patel