Joomla 5 Notice

We are pleased to announce that as of January 29, 2024, all of our Joomla extensions are compatible with Joomla 5.

For all who are still updateing from Joomla 3 to Joomla 4: Joomla 4 Migration instructions are available here:

There is now a separate Documentation for Visforms for Joomla 4 and for Visforms for Joomla 5!

Forum

Visforms Subscription user can ask questions in our forum. Please log in with the relevant user first.
Everybody can access the forum for reading.

Please only ask 1 question per topic.

Important information for almost every question:
V1: Which Visforms version is running?
V2: Which Joomla version is running?
V3: Which PHP version is running?

Abbrechen Button für Formularansichten (Eingabemaske)

More
6 months 1 week ago #10415 by MaliRaj
Hallo Aicha, vielen Dank wieder einmal für deine richtige richtungsweisende Vermutung. Genau so funktioniert es nun wie gewünscht. Auch die unterschiedlichen Formularkonfigurationen (mit oder ohne Zusammenfassungsseite, mit oder ohne Reset-Button) werden nun berücksichtigt.:
Code:
jQuery(document).ready(function() {     // console.log('FEWA script loaded');     // Erstelle einen Abbrechen/Schließen Button     var backButton = document.createElement("button");         backButton.className = "btn btn-secondary col-auto";     backButton.innerHTML = "Abbrechen";     if (window.history.length === 1) {         // console.log("Der Browserverlauf existiert nicht:");         // Hinzufügen eines Event Listeners, um beim Klicken auf den Button das aktuelle Fenster zu schließen         backButton.addEventListener("click", function() {                         event.preventDefault();             window.close();                         return false;         });          } else {         // console.log("Der Browserverlauf existiert:");         // Hinzufügen eines Event Listeners, um beim Klicken auf den Button die letzte Seite des Browserverlaufs aufzurufen         backButton.addEventListener("click", function() {                         event.preventDefault();             window.history.back();                         return false;                      });     }     // Finde das bereits vorhandene Input-Element vom Typ 'submit'     if (document.querySelector("input[type='submit']")) {             // Füge den Abbrechen-Button vor dem vorhandenen Submit-Button ein                var submitButton = document.querySelector("input[type='submit']");            submitButton.parentNode.insertBefore(backButton, submitButton);         }     // Finde das bereits vorhandene Input-Element vom Typ 'button'     if (document.querySelector("input[type='button']")) {             // Füge den Abbrechen-Button vor dem vorhandenen Submit-Button ein                var submitButton = document.querySelector("input[type='button']") ;            submitButton.parentNode.insertBefore(backButton, submitButton);         } });

Freundliche Grüße aus PM
Heinz
(Joomla 5.1.2 / Visforms+Subscription 5.12 / PHP 8.2)
The following user(s) said Thank You: Administrator IV

More
5 months 2 weeks ago #10453 by Administrator IV
Replied by Administrator IV on topic Abbrechen Button für Formularansichten (Eingabemaske)
Hallo Heinz,

super, dass du es so gut passend umsetzen konntest.
Herzlichen Dank für den fertigen Code hier im Forum!

Liebe Grüße, Ingmar

:idea: I recommend you the new and up-to-date documentation for Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/en/docs/
Most of this also applies retrospectively to Joomla 3.
Please only ask 1 question per topic :-).

:idea: Ich empfehle Dir die neue und aktuelle Dokumentation für Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/docs/
Das meiste gilt rückwirkend auch für Joomla 3.
Bitte immer nur 1 Frage pro Thema stellen :-).

Moderators: Administrator AVAdministrator IV
Powered by Kunena Forum