我在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'
}
]
});
你究竟想要什麼? – 2012-04-13 07:07:25
我想用'dd.MM.yyyy'而不是'MM/dd/yyyy'過濾格式日期列更改。 [對英語不好] [:) – pajar 2012-04-13 08:12:36