Javascript 剑道网格中特定列的自定义筛选消息

Javascript 剑道网格中特定列的自定义筛选消息,javascript,kendo-ui,telerik,kendo-grid,Javascript,Kendo Ui,Telerik,Kendo Grid,假设我们有一个网格,如Telerik示例中所示: 网格筛选器的默认信息消息是:“显示值为:'的项” 有没有办法只为网格中的一个特定列更改该消息,而其他列保留默认消息 比如: columns: [{ field: "OrderID", title: "Order ID", width: 120 }, { field: "ShipCountry", title: "Ship Country" }, { field: "ShipName", t

假设我们有一个网格,如Telerik示例中所示:

网格筛选器的默认信息消息是:“显示值为:'的项”

有没有办法只为网格中的一个特定列更改该消息,而其他列保留默认消息

比如:

columns: [{
    field: "OrderID",
    title: "Order ID",
    width: 120
}, {
    field: "ShipCountry",
    title: "Ship Country"
}, {
    field: "ShipName",
    title: "Ship Name"
}, {
    field: "ShipAddress",
    filterable: true,
    messages: {
        info: 'Show items custom message:'
    }
}]

您应该在
可过滤的
中定义
消息
。具体如下:

{
    field: "ShipAddress",
    filterable: {
        messages: {
            info: 'Show items custom message:'
        }
    }
}

您应该在
可过滤的
中定义
消息
。具体如下:

{
    field: "ShipAddress",
    filterable: {
        messages: {
            info: 'Show items custom message:'
        }
    }
}

您应该在
可过滤的
中定义
消息
。具体如下:

{
    field: "ShipAddress",
    filterable: {
        messages: {
            info: 'Show items custom message:'
        }
    }
}

您应该在
可过滤的
中定义
消息
。具体如下:

{
    field: "ShipAddress",
    filterable: {
        messages: {
            info: 'Show items custom message:'
        }
    }
}