8.4.2: select ui tab programmatically
Permalink
I have tabs on a page with pagination:
Is there any way to select one of the tabs programmatically so that the page redirects directly to it after clicking the page link? Or it's not possible because the page reloads together with the script?
echo $app->make('helper/concrete/ui')->tabs([ ['tab1', t('Tab1'), true], ['tab2', t('Tab2')], ['tab3', t('Tab3')], ... ]);
Is there any way to select one of the tabs programmatically so that the page redirects directly to it after clicking the page link? Or it's not possible because the page reloads together with the script?