将列隐藏在handontable中

时间:2015-12-29 22:12:48

标签: javascript jquery handsontable

我有以下代码用于表情符号。不幸的是,如果我想在我的浏览器上隐藏1列,我找不到任何文档,但由于我的服务器端处理限制,我需要它在那里。

var hot = new Handsontable(container, {
    columnSorting: true,
    stretchH: "all",    
    className: "htCenter",
    colHeaders: ['Country', 'Post Location', 'Code', 'Distribution Center', 'Post Location Id'],
    data: data,
    columns: [
    {
        data: 'country_name',
        editor : false
    },
    {
        data: 'label',
        editor : false
    },
    {
        data: 'code',
        editor : false
    },
    {
        data: 'channel_name',
        type: 'dropdown',
        source: distribution_centers
    },
    {
        data: 'post_location_id',
        editor: false,

    }
    ]
});

有什么办法可以隐藏我的post_location_id列吗?

由于

0 个答案:

没有答案