禁止在Handsontable网格中仅拖放一行

时间:2018-11-09 01:58:18

标签: handsontable

我是Handsontable的新手。

我正在使用拖放功能。

我可以通过将'manualRowMove'属性设置为true来启用拖放功能。

但是,我想仅在 last 行上禁用拖放。

问题:有什么方法可以实现?

我检查了他们的文档和在线论坛,但没有找到答案。

可验证的代码

table = new Handsontable(container1, {
        data: data,
        defaultRowHeight: 20,
        rowHeaders: true,
        colHeaders: true,
        manualRowMove: true, 
        licenseKey: LicenseKey, 
        colHeaders: ["Name", "Email", "Designation", "Id"], 
        columns: [
            { data: "Name", type: "text", readOnly: true },
            { data: "Email", type: "text", readOnly: false },
            { data: "Designation", type: "text", readOnly: false },
            { data: "Id", type: "text", readOnly: true }
        ]        
    });

0 个答案:

没有答案