document.getElementById("processLabel[]").addEventListener("keydown", function(event) {
if (event.key === ",") {
event.preventDefault();
const selectionStart = event.target.selectionStart;
const selectionEnd = event.target.selectionEnd;
const inputValue = event.target.value;
const modifiedValue = inputValue.substring(0, selectionStart) + '.' + inputValue.substring(selectionEnd);
event.target.value = modifiedValue;
event.target.setSelectionRange(selectionStart + 1, selectionStart + 1);
}
});dener misin