I developed a page where an user can edit (using front editing plugin) a content.
That page has some properties separated in 3 tabs (Title where you can put on EN, FR, DE, NL, RO language separately; Description same thing like in Title; and Upload file)
What I want to do ? When click on description, I want to open Description tab... But default is opened first tab ( Title )
How to do that ?
I tried to get the available tabs with:
DocumentType dt = new DocumentType(1051); //id of documenttype
foreach (ContentType.Tab x in dt.getVirtualTabs)
{
...
}
But seems that DocumentType is obsolete, also getVirtualTabs is obsolete.
So, how to get available tabs ? And how to select it dynamically (if is possible through javascript then is perfect)
Open a tab in Umbraco CMS
Hi,
I developed a page where an user can edit (using front editing plugin) a content.
That page has some properties separated in 3 tabs (
Title
where you can put on EN, FR, DE, NL, RO language separately;Description
same thing like in Title; andUpload
file)What I want to do ? When click on description, I want to open
Description
tab... But default is opened first tab ( Title )How to do that ?
I tried to get the available tabs with:
But seems that
DocumentType
is obsolete, alsogetVirtualTabs
is obsolete.So, how to get available tabs ? And how to select it dynamically (if is possible through javascript then is perfect)
is working on a reply...