2014-09-24 134 views
0

比方說,我們有像在這個Telerik的例子網格:自定義過濾器的消息

電網濾波器

http://dojo.telerik.com/UkiH/2

默認信息的消息是:「與值顯示項目:」

有沒有一種方法可以只改變網格中的一個特定列的消息,其他人可以保留默認消息?

喜歡的東西:

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:' 
    } 
}] 

回答

2

你應該定義messagesfilterable。東西如下:

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

謝謝你,這沒有把戲 – Mefhisto1 2014-09-24 08:15:59