export function input1_input(event) {
let input= $w("#input1").value;
input = parseFloat(input);
let output = input * 2;
output = parseFloat(ausgabe).toFixed(4);
$w("#input2").value = ausgabe;
}
I have 2 input fields (text) and do a calculation (see code). Can I do the same, but input and output with german number format (e.g. 1.000,25) ?
Thank you
Walter