Hello,
I am using render form 3.x and I need to give hte possibility to uncheck radio input. The click event is triggered only in check state. How I can force the triggerChange on unselect.
I appreciate any suggestion.
Formio.createForm(document.getElementById('formrender'), data).then(function(form) {
$('#formrender input:radio').each(function(event) {
$(this).on('click', function (event) {
if (event.ctrlKey) {
$(this).prop('checked', false);
'HERE NEED THE TRIGGER CHANGE'
}
});
});
});
Hello, I am using render form 3.x and I need to give hte possibility to uncheck radio input. The click event is triggered only in check state. How I can force the triggerChange on unselect.
I appreciate any suggestion.
Thanks!