0

我是 Handsontable 的新手。我正在尝试使用“ getSelected ”和“ alter ”方法(remove_row)删除多个选定的表行。但是,使用下面的代码,我在 Chrome 中收到未在 Firebug 中定义的错误“选择”和“未捕获的类型错误:无法读取未定义的属性 '0'”。我选择哪一行或多少行都没有关系。我仍然收到错误消息,并且没有删除任何行。请问我做错了什么?

    $(document).ready(function () {

    var myData = [
        ["", "Kia", "Nissan", "Toyota", "Honda"],
        ["2008", 10, 11, 12, 13],
        ["2009", 20, 11, 14, 13],
        ["2010", 30, 15, 12, 13]
    ];

    $("#exampleGrid").handsontable({
        data: myData,
        startRows: 5,
        startCols: 5,
        //minSpareCols: 1, //always keep at least 1 spare row at the right
        //minSpareRows: 1, //always keep at least 1 spare row at the bottom,
        rowHeaders: true,
        colHeaders: true,
        contextMenu: true,
        currentRowClassName: 'currentRow',
        currentColClassName: 'currentCol'

    });

    $edit = $('#exampleGrid');

    function editRows() {

        $('#addtop').on('click', function () {
            $edit.handsontable('alter', 'insert_row', 0);
        });

        $('#addbottom').on('click', function () {
            $edit.handsontable('alter', 'insert_row');
        });

        var selection = $edit.handsontable('getSelected');
        $('.deletebutton').on('click', function () {
            $edit.handsontable('alter', 'remove_row', selection[0], selection[2]);
        });

    }

    editRows();
  });

这是我的小提琴http://jsfiddle.net/EfhqJ/48/

谢谢。

4

3 回答 3

1

就目前而言,getSelected()没有返回任何内容......

getSelected: function () { 
     //https://github.com/warpech/jquery-handsontable/issues/44 
     //cjl if (selection.isSelected()) { 
     //return [priv.selStart.row(), priv.selStart.col(), priv.selEnd.row(), priv.selEnd.col()]; 
     //} 
     }

这是一个巨大的问题,因为可操作的参考文献具有相当多的功能。但是,我们可以幸运地使用afterSelectionEnd 事件

afterSelectionEnd (r: Number, c: Number, r2: Number, c2: Number)
选择一个或多个单元格后触发回调(鼠标向上)。

参数:
r选择开始行
c选择开始列
r2选择结束行
c2选择结束列

根据API

alter ('remove_row', index: Number, amount: Number (Optional), source: String (Optional))

删除给定索引处的行。默认金额等于 1

这意味着为了使用alter('remove_row'),我们只需要提供索引。


这是我为获得所需结果而制作的工作演示。

笔记:

由于一个错误,我们需要在afterSelectionEnd event.

JAVASCRIPT:

var myData = [
    ["", "Kia", "Nissan", "Toyota", "Honda"],
    ["2008", 10, 11, 12, 13],
    ["2009", 20, 11, 14, 13],
    ["2010", 30, 15, 12, 13]
    ];

//declare row vars
var row1 = null,
    row2 = null;

var $container = $("#exampleGrid");

$container.handsontable({
    data: myData,
    startRows: 5,
    startCols: 5,
    minSpareCols: 0,
    minSpareRows: 0,
    rowHeaders: true,
    colHeaders: true,
    contextMenu: true,
    afterSelectionEnd: function(x1, y1, x2, y2){

        //add this because of bug
          if( (x1 <= x2 && y1 < y2) || (x1 < x2 && y1 <= y2) || (x1 == x2 && y1 == y2)) {
            row1 = x1;
            if(x1 == 0)
                row2 = parseInt(x2 + 1);
              else
                row2 = x2;
        }
        else if( (x1 >= x2 && y1 > y2) || (x1 > x2 && y1 >= y2)) {
            row1 = x2;
            if(x2 == 0)
                row2 = parseInt(x1 + 1);
              else
                row2 = x1;
        }
        else if(x1 < x2 && y1 > y2) {
            row1 = x1;
            row2 = x2;
        }
        else if(x1 > x2 && y1 < y2) {
            row1 = x2;
            row2 = x1;
        }
    }
});

//gets instance of handsontable
    var instance = $container.handsontable('getInstance');

$('#delete').click(function(){
    if(row1 != null){
        if(row2 != null || row2 != row1 ){
            instance.alter('remove_row', row1, row2);
        }
        else{
            instance.alter('remove_row', row1);
        }
        row1 = null;
        row2 = null;
    }else{
        alert('Please select a cell...');   
    }
});

希望这会有所帮助,如果您需要其他任何东西,请告诉我!

于 2013-07-12T06:20:00.587 回答
1

您的“选择”变量在 onClick 处理程序的范围内不可见。

尝试将“var selection = ...”移动到处理函数中。就像是...

    $('.deletebutton').on('click', function () {
        var selection = $edit.handsontable('getSelected');
        $edit.handsontable('alter', 'remove_row', selection[0], selection[2]);
    });
于 2013-06-27T21:02:00.307 回答
0

您只需要添加outsideClickDeselects: false到您的构造函数选项,然后您将获得 getSelected() 的正确结果。

这是现场演示http://jsfiddle.net/czz82kL5/2/

于 2016-09-16T14:12:15.183 回答