We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8429f8a + 8d97dc6 commit 34f9aa9Copy full SHA for 34f9aa9
src/resources/views/crud/fields/radio.blade.php
@@ -71,8 +71,8 @@ function bpFieldInitRadioElement(element) {
71
72
// when one radio input is selected
73
element.find('input[type=radio]').change(function(event) {
74
- // the value gets updated in the hidden input
75
- hiddenInput.val($(this).val());
+ // the value gets updated in the hidden input and the 'change' event is fired
+ hiddenInput.val($(this).val()).change();
76
// all other radios get unchecked
77
element.find('input[type=radio]').not(this).prop('checked', false);
78
});
0 commit comments