Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
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
languagexml
titleCustom HTML Code in Child Form
linenumberstrue
<script>
$(function(){
    region = window.top.$("input[name='region']:checked").val();
    FormUtil.getField("region").val(region);
});
</script>

...