2012-04-13 77 views
2

我在jquery中有代碼:如何過濾日期格式(dd.MM.yyyy)在網格infragistic jquery?

我使用json獲取數據的源代碼。

這是樣品http://samples.infragistics.com/jquery/grid/advanced-filtering

   $("#tbl-visit-schedule").igGrid({ 
        columns: [ 
      { headerText: "Date", key: "Date",dataType:"date",format:"dd.MM.yyyy" }, 
      { headerText: "Name", key: "Name", dataType: "string" }, 
      { headerText: "Siegle", key: "Siegle", dataType: "string" }, 
      { headerText: "Group", key: "Group", dataType: "string" }, 
      { headerText: "Status", key: "Status", dataType: "string" },   
      {headerText: "Action", key: "Action", dataType: "string" } 
      ], 
        width: "550px", 
        height: "400px", 
        dataSource: jsonp, 
        features: [ 

      { 
       name: 'Filtering', 
       allowFiltering: true,      
       type: 'local' 

      } 
     ] 
       }); 
+1

你究竟想要什麼? – 2012-04-13 07:07:25

+1

我想用'dd.MM.yyyy'而不是'MM/dd/yyyy'過濾格式日期列更改。 [對英語不好] [:) – pajar 2012-04-13 08:12:36

回答

2

的日期格式實際上僅用於顯示目的。不管應用的格式如何,過濾仍然是相同的。

0

您可以查看控件的本地化。 Infragistics在默認情況下提供了一些語言環境,保加利亞語的格式與您正在查找的格式類似。您可以在help中看到更多關於本地化的信息。

相關問題