Joomla 5 Mitteilung

Wir freuen uns mitteilen zu können, dass seit dem 29. Januar 2024 alle unsere Joomla Erweiterungen mit Joomla 5 kompatible sind.

Für alle die gerade noch von Joomla 3 auf 4 aktualisieren: Anleitungen für die Joomla 4 Migration gibt es hier:

Es gibt nun auch eine eigenständige Dokumentation für Visforms für Joomla 4 und für Visforms auf Joomla 5

Forum

Visforms Subscription Inhaber können in unserem Forum Fragen stellen. Bitte mit dem entsprechenden Benutzer anmelden.
Jeder kann lesend auf das Forum zugreifen.

Bitte stellen Sie nur 1 Frage pro Thema.

Wichtig Angaben für fast jede Frage:
V1: Welche Visforms-Version läuft?
V2: Welche Joomla-Version läuft?
V3: Welche PHP-Version läuft?

Aufgrund von Feiertagen und Urlaub ist bei Anfragen im Forum in der Zeit vom 20. Dezember 2024 bis zum 8.Januar 2025 mit verlängerten Antwortzeiten zu rechnen.

Disabling default Enter key action

Mehr
8 Jahre 7 Monate her #3053 von mligrani
mligrani antwortete auf Disabling default Enter key action
Hi Aicha,
could it help providing you the URL of the pilot site? do you have an iOS device to test with?
thanks
regs

massimo

Mehr
8 Jahre 7 Monate her #3054 von Administrator AV
Administrator AV antwortete auf Disabling default Enter key action
Hi Massimo,

thanks a lot, but sadly I have no such device.
Maybe I could try to use an emulator but I'm not sure if that is good enough.

But if you like to you could mail me the link to contact@vi-solutions.de

Regards,
Aicha

: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 :-).
Folgende Benutzer bedankten sich: mligrani

Mehr
8 Jahre 7 Monate her #3055 von mligrani
mligrani antwortete auf Disabling default Enter key action
Ok,
let's try with the jQuery statement. Can I please ask you a little further help?
So I have 2 visforms, let's say their names are "alpha" and "beta", their ID respectively are 1 and 2.
I would like to disable the enter key for both.

I would add the following <script> section to my <head>:

<script type="text/javascript">
jQuery(document).ready() {
jQuery('input').keypress(function(e) {
var code = (e.keyCode ? e.keyCode : e.which);
if ( (code==13) || (code==10))
{
jQuery(this).blur();
return false;
}
}
};
</script>

Do you think it's ok?
thanks

m.

Mehr
8 Jahre 7 Monate her #3056 von Administrator AV
Administrator AV antwortete auf Disabling default Enter key action
Hi,

as a spontanious reaction I would say there is an e.preventDefault(); missing in the if statement of this code and I would have thought that you would bind the event handler not to all input elements on your website (Query('input') but to a specific form which has the id-Attribut visform1 respectively visform2 (if you display the form via a menu item) as in jQuery('#visform1, #visform2').

Regards,
Aicha

: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 :-).

Moderatoren: Administrator AVAdministrator IV
Powered by Kunena Forum