1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
| ; (function ($) {
| $.jqx._jqxGrid = $.jqx._jqxGrid || {};
| $.extend($.jqx._jqxGrid.prototype, {
| gridlocalization: {
| "/": "/",
| ":": ":",
| firstDay: 0,
| days: {
| names: ["Sunday", "Monday",
| "Tuesday", "Wednesday",
| "Thursday", "Friday",
| "Saturday"],
| namesAbbr: ["Sun", "Mon", "Tue",
| "Wed", "Thu", "Fri", "Sat"],
| namesShort: ["Su", "Mo", "Tu", "We",
| "Th", "Fr", "Sa"]
| },
| months: {
| names: ["January", "February",
| "March", "April", "May",
| "June", "July", "August",
| "September", "October",
| "November", "December", ""],
| namesAbbr: ["Jan", "Feb", "Mar",
| "Apr", "May", "Jun", "Jul",
| "Aug", "Sep", "Oct", "Nov",
| "Dec", ""]
| },
| AM: ["AM", "am", "AM"],
| PM: ["PM", "pm", "PM"],
| eras: [{
| name: "A.D.",
| start: null,
| offset: 0
| }],
| twoDigitYearMax: 2029,
| patterns: {
| d: "M/d/yyyy",
| D: "dddd, MMMM dd, yyyy",
| t: "h:mm tt",
| T: "h:mm:ss tt",
| f: "dddd, MMMM dd, yyyy h:mm tt",
| F: "dddd, MMMM dd, yyyy h:mm:ss tt",
| M: "MMMM dd",
| Y: "yyyy MMMM",
| S: "yyyy\u0027-\u0027MM\u0027-\u0027dd\u0027T\u0027HH\u0027:\u0027mm\u0027:\u0027ss",
| ISO: "yyyy-MM-dd hh:mm:ss",
| ISO2: "yyyy-MM-dd HH:mm:ss",
| d1: "dd.MM.yyyy",
| d2: "dd-MM-yyyy",
| d3: "dd-MMMM-yyyy",
| d4: "dd-MM-yy",
| d5: "H:mm",
| d6: "HH:mm",
| d7: "HH:mm tt",
| d8: "dd/MMMM/yyyy",
| d9: "MMMM-dd",
| d10: "MM-dd",
| d11: "MM-dd-yyyy"
| },
| percentsymbol: "%",
| currencysymbol: "$",
| currencysymbolposition: "before",
| decimalseparator: ".",
| thousandsseparator: ",",
| pagergotopagestring: "跳往:",
| pagershowrowsstring: "每页显示:",
| pagerrangestring: " 共 ",
| pagerpreviousbuttonstring: "上一页",
| pagernextbuttonstring: "下一页",
| pagerfirstbuttonstring: "第一页",
| pagerlastbuttonstring: "最后一页",
| groupsheaderstring: "Drag a column and drop it here to group by that column",
| sortascendingstring: "升序排序",
| sortdescendingstring: "降序排序",
| sortremovestring: "删除排序",
| groupbystring: "Group By this column",
| groupremovestring: "Remove from groups",
| filterclearstring: "Clear",
| filterstring: "Filter",
| filtershowrowstring: "Show rows where:",
| filtershowrowdatestring: "Show rows where date:",
| filterorconditionstring: "Or",
| filterandconditionstring: "And",
| filterselectallstring: "(Select All)",
| filterchoosestring: "Please Choose:",
| filterstringcomparisonoperators: [
| "empty", "not empty", "contains",
| "contains(match case)",
| "does not contain",
| "does not contain(match case)",
| "starts with",
| "starts with(match case)",
| "ends with",
| "ends with(match case)", "equal",
| "equal(match case)", "null",
| "not null"],
| filternumericcomparisonoperators: [
| "equal", "not equal", "less than",
| "less than or equal",
| "greater than",
| "greater than or equal", "null",
| "not null"],
| filterdatecomparisonoperators: ["equal",
| "not equal", "less than",
| "less than or equal",
| "greater than",
| "greater than or equal", "null",
| "not null"],
| filterbooleancomparisonoperators: [
| "equal", "not equal"],
| validationstring: "Entered value is not valid",
| emptydatastring: "无符合条件的数据!",
| filterselectstring: "Select Filter",
| loadtext: "Loading...",
| clearstring: "Clear",
| todaystring: "Today",
| addrowstring: "Add",
| udpaterowstring: "Update",
| deleterowstring: "Delete",
| resetrowstring: "Reset",
| everpresentrowplaceholder: "Enter "
| },
| localizestrings: function () {
|
| }
| });
| })(jqxBaseFramework);
|
|