Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
To populate a value in a popup form opened by Form Grid, with an existing value in the parent form
Type the following code in the popup form:
<script type="text/javascript"> $(document).ready(function(){ var mainFormField = "courseName"; var fieldId = "course"; //get value from parent form var value = $('[name='+mainFormField+']:enabled', window.parent.document).val(); //store the value to a field $('[name='+fieldId+']:enabled').val(value); }); </script>