Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

目的:

To delete all the rows that have been added to the Form Grid when a field value is changed

...

对于已经添加到表单表格中的字段, 当字段值发生改变时 删除所有行 

代码:
Code Block
langjavascript
<script>
$(document).ready(function(){
    var selectField = "field1";
    var formGrid = "field2";

    //when select box value is changed
    $("[name="+selectField+"]:enabled").change(function(){
        //remove all data from form grid
        $("[name="+formGrid+"]").find("table tr.grid-row").remove();
    });
});
</script>