Hello Daniel Will – Have you tried triggering a change event on that element after you've checked the box? Oftentimes when an HTML property is manipulated with JavaScript (without user-input on the control), the change event isn't triggered.
You can do this using:
NWF$('#' + varBereitstellung).trigger('change');
You're right, I succeeded with
NWF$('#' + varBereitstellung).trigger('focusout');
or
NWF.FormFiller.Functions.ProcessOnChange(NWF$('#' + varBereitstellung));
Hi Patrick Aebi, Manfred Lauer, Frank Field
sorry for my late response, i had a focus on other things the last days.
I can only choose one answer as the right one, but Patrick and Manfred had the right solutions.
For me two codlines work:
NWF$('#' + varBereitstellung).trigger('change'); or NWF.FormFiller.Functions.ProcessOnChange(NWF$('#' + varBereitstellung));
Is one of this preferable?
Big thank you to you guys. This forum ist really helpful for beginners.
Cheers
Daniel
I'm glad that worked for you Daniel Will, happy to help!
Thanks Patrick! This worked great for me.