Completed
Last Updated: 12 Aug 2021 14:38 by ADMIN
Release R3 2021
ADMIN
Attila Antal
Created on: 20 Nov 2017 10:25
Category: TabStrip
Type: Bug Report
0
Newly created child tab not showing up
When adding a child tab programmatically to a second TabStrip tab that has no child item, the newly created child tab will not show up.

Workaround is to remove the class that was hiding the child element:

if (selectedTab.get_tabs().get_count() > 0) {
    $(selectedTab.get_levelElement()).removeClass("rtsHidden");
}
0 comments