#2007·metroui

PageControl Component

Author: dypsysssCreated Nov 10, 2025Updated Nov 10, 2025

The pagecontrol component fails when using the getTabByTitle function.

function find tag by '.caption' when tag have 'page-control__tab__caption' : getTabByTitle: function (caption) { if (!caption) { return undefined; } const tabs = this.component.find(".page-control__tab"); for (const tab of tabs) { if ($(tab).find(".page-control__tab__caption").text() === caption) { return tab; } } return undefined; },