Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
@Anders Thanks for pointing me to the right directions
i used the following code and it works for me
<script type="text/javascript"> $('[name$=Agency]').change ( function() { var mySelectedValueId = $(this).find(':selected').val(); $('[name$=SelectedValueId]').val(mySelectedValueId); if (mySelectedValueId !== "MyCompany") { $("input[name=Status][value='Contingent']").prop("checked",true); } if (mySelectedValueId == "MyCompany") { $("input[name=Status][value='Permanent']").prop("checked",true); } } ); </script>
Hi, the code to change a radio button selection is incorrect, try following the examples from https://stackoverflow.com/questions/5665915/how-to-check-a-radio-button-with-jquery
Hi
i have a Selectbox - Agency, on selection change i wantt to evaluate if its not MyCompany then the Radio Button - Status to change to 'Contingent'
im useing the follwoing code but its not working, the alret pop up when the select box is changed but the radio button does not get updated
regards