关于#bootstrap#的问题,如何解决?

  1. 问题遇到的现象和发生背景
    使用bootstraptable的refresh刷新表功能后,子表格的editable就失效了
  2. 代码
                        onEditableSave: function (field, row, index, oldValue ,$el){
                            $.ajax({
                                type: 'post',
                                url: url,
                                data: row,
                                success:function(data){
                                    $table.bootstrapTable('refresh');
                                    $('#child_table').bootstrapTable('load',data);
                                },
                                error:function (){
                                },
                                complete:function (){
                                }
}