English |
---|
By using the code below, we would be able to use the parent form field value in grid form as a grouping/dependency for a dropdown selectbox. |
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<script> $(function(){ region = window.top.$("input[name='region']:checked").val(); FormUtil.getField("region").val(region); }); </script> |
...