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?

Edit Only Feld

More
5 months 2 weeks ago #10444 by prffrost
Edit Only Feld was created by prffrost
wer es brauchen kann ....
Frontend Webassets / Formular / JavaScript

Damit blende Ich die Felder im Formular aus die nicht die funktion "Edit Only Feld" haben .... z.B. Berechnung..
Code:
document.addEventListener("DOMContentLoaded", function() {     console.log('Script loaded');          const fieldIds = ['9275', '9274']; // IDs der Elemente, die ausgeblendet werden sollen     // Elemente und ihre Bezeichnungen mit den angegebenen IDs ausblenden     fieldIds.forEach(function(fieldId) {         // Element und Bezeichnung ausblenden         const elementToHide = document.getElementById('field' + fieldId);         const labelToHide = document.querySelector(`label[for='field${fieldId}']`);         if (elementToHide) {             elementToHide.style.display = 'none';             console.log(`Element with ID field${fieldId} successfully hidden.`);         } else {             console.log(`Element with ID field${fieldId} not found.`);         }         if (labelToHide) {             labelToHide.style.display = 'none';             console.log(`Label for element with ID field${fieldId} successfully hidden.`);         } else {             console.log(`Label for element with ID field${fieldId} not found.`);         }     }); });
The following user(s) said Thank You: Administrator IV

More
5 months 2 weeks ago #10454 by Administrator IV
Replied by Administrator IV on topic Edit Only Feld
Hallo Wolfgang,

herzlichen Dank für dein Code-Beispiel!

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