|
|
@@ -1976,6 +1976,19 @@
|
|
|
}
|
|
|
});
|
|
|
|
|
|
+ Livewire.on('saved-and-continue', (currentTab) => {
|
|
|
+ const nextTab = getNextTab(currentTab);
|
|
|
+ if (nextTab !== currentTab) {
|
|
|
+ @this.change(nextTab);
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ function getNextTab(currentTab) {
|
|
|
+ const tabs = ['dati', 'tesseramento', 'corsi', 'gruppi'];
|
|
|
+ const currentIndex = tabs.indexOf(currentTab);
|
|
|
+ return currentIndex < tabs.length - 1 ? tabs[currentIndex + 1] : currentTab;
|
|
|
+ }
|
|
|
+
|
|
|
function showData(id)
|
|
|
{
|
|
|
@this.showDetailF(id);
|