jsxgrid 2.1.0 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +43 -0
- package/dist/fields/jsgrid.field.XDateTimeField.min.js +2 -2
- package/dist/fields/jsgrid.field.XRowSelectField.min.js +2 -2
- package/dist/fields/jsgrid.field.Xcheckbox.min.js +2 -2
- package/dist/fields/jsgrid.field.Xcontrol.min.js +2 -2
- package/dist/fields/jsgrid.field.XimgField.min.js +2 -2
- package/dist/fields/jsgrid.field.Xjsoneditor.min.js +2 -2
- package/dist/fields/jsgrid.field.Xnumber.min.js +2 -2
- package/dist/fields/jsgrid.field.Xselect.min.js +2 -2
- package/dist/fields/jsgrid.field.Xtext.min.js +2 -2
- package/dist/fields/jsgrid.field.Xtextarea.min.js +2 -2
- package/dist/fields/lib/jsGridSummaryPlugin.min.js +1 -1
- package/dist/fields/lib/jsgrid.popup.basic.min.js +1 -1
- package/dist/i18n/jsgrid-Ko.js +28 -2
- package/dist/i18n/jsgrid-cs.js +28 -2
- package/dist/i18n/jsgrid-de.js +28 -2
- package/dist/i18n/jsgrid-el.js +28 -2
- package/dist/i18n/jsgrid-es.js +28 -2
- package/dist/i18n/jsgrid-fa.js +28 -2
- package/dist/i18n/jsgrid-fr.js +28 -2
- package/dist/i18n/jsgrid-he.js +28 -2
- package/dist/i18n/jsgrid-it.js +28 -2
- package/dist/i18n/jsgrid-ja.js +28 -2
- package/dist/i18n/jsgrid-ka.js +28 -2
- package/dist/i18n/jsgrid-lt.js +28 -2
- package/dist/i18n/jsgrid-pl.js +28 -2
- package/dist/i18n/jsgrid-pt-br.js +28 -2
- package/dist/i18n/jsgrid-pt.js +28 -2
- package/dist/i18n/jsgrid-ru.js +28 -2
- package/dist/i18n/jsgrid-tr.js +28 -2
- package/dist/i18n/jsgrid-zh-cn.js +28 -2
- package/dist/i18n/jsgrid-zh-tw.js +28 -2
- package/dist/jsxgrid-fields.js +61 -13
- package/dist/jsxgrid-fields.min.js +2 -2
- package/dist/jsxgrid-theme.css +1 -1
- package/dist/jsxgrid-xfields.js +98 -18
- package/dist/jsxgrid-xfields.min.js +2 -2
- package/dist/jsxgrid.css +1 -1
- package/dist/jsxgrid.js +59 -5
- package/dist/jsxgrid.min.js +2 -2
- package/package.json +1 -1
- package/src/fields/jsgrid.field.XDateTimeField.js +10 -2
- package/src/fields/jsgrid.field.XRowSelectField.js +10 -2
- package/src/fields/jsgrid.field.Xcheckbox.js +10 -2
- package/src/fields/jsgrid.field.Xcontrol.js +9 -1
- package/src/fields/jsgrid.field.XimgField.js +10 -2
- package/src/fields/jsgrid.field.Xjsoneditor.js +10 -2
- package/src/fields/jsgrid.field.Xnumber.js +9 -1
- package/src/fields/jsgrid.field.Xselect.js +10 -2
- package/src/fields/jsgrid.field.Xtext.js +9 -1
- package/src/fields/jsgrid.field.Xtextarea.js +10 -2
- package/src/fields/jsgrid.field.checkbox.js +10 -2
- package/src/fields/jsgrid.field.control.js +10 -2
- package/src/fields/jsgrid.field.number.js +10 -2
- package/src/fields/jsgrid.field.select.js +10 -2
- package/src/fields/jsgrid.field.text.js +10 -2
- package/src/fields/jsgrid.field.textarea.js +10 -2
- package/src/i18n/Ko.js +28 -2
- package/src/i18n/cs.js +28 -2
- package/src/i18n/de.js +28 -2
- package/src/i18n/el.js +28 -2
- package/src/i18n/es.js +28 -2
- package/src/i18n/fa.js +28 -2
- package/src/i18n/fr.js +28 -2
- package/src/i18n/he.js +28 -2
- package/src/i18n/it.js +28 -2
- package/src/i18n/ja.js +28 -2
- package/src/i18n/ka.js +28 -2
- package/src/i18n/lt.js +28 -2
- package/src/i18n/pl.js +28 -2
- package/src/i18n/pt-br.js +28 -2
- package/src/i18n/pt.js +28 -2
- package/src/i18n/ru.js +28 -2
- package/src/i18n/tr.js +28 -2
- package/src/i18n/zh-cn.js +28 -2
- package/src/i18n/zh-tw.js +28 -2
- package/src/jsgrid.core.js +51 -2
- package/src/jsgrid.validation.js +6 -1
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid, $, undefined) {
|
|
1
|
+
(function(jsGrid, $, undefined) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.XRowSelectField.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
var XRowSelectField = function (config) {
|
|
4
12
|
this.selectedItems = [];
|
|
@@ -59,4 +67,4 @@
|
|
|
59
67
|
|
|
60
68
|
jsGrid.fields.XRowSelectField = XRowSelectField;
|
|
61
69
|
|
|
62
|
-
}(jsGrid, jQuery));
|
|
70
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid, $, undefined) {
|
|
1
|
+
(function(jsGrid, $, undefined) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.Xcheckbox.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
// Standalone: does not extend jsGrid.CheckboxField, only jsGrid.Field.
|
|
4
12
|
// Same tri-state (checked/unchecked/indeterminate) filter behavior as
|
|
@@ -105,4 +113,4 @@
|
|
|
105
113
|
|
|
106
114
|
jsGrid.fields.Xcheckbox = Xcheckbox;
|
|
107
115
|
|
|
108
|
-
}(jsGrid, jQuery));
|
|
116
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
(function(jsGrid, $, undefined) {
|
|
2
2
|
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.Xcontrol.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
|
|
3
11
|
// Already standalone - the native control field extends jsGrid.Field
|
|
4
12
|
// directly, same as every X-field. X-branded purely for naming parity,
|
|
5
13
|
// so it can be used instead of "control" once the native fields bundle
|
|
@@ -226,4 +234,4 @@
|
|
|
226
234
|
|
|
227
235
|
jsGrid.fields.Xcontrol = Xcontrol;
|
|
228
236
|
|
|
229
|
-
}(jsGrid, jQuery));
|
|
237
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid, $, undefined) {
|
|
1
|
+
(function(jsGrid, $, undefined) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.XimgField.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
// Standalone: does not extend jsGrid.TextField, only jsGrid.Field.
|
|
4
12
|
|
|
@@ -96,4 +104,4 @@
|
|
|
96
104
|
|
|
97
105
|
jsGrid.fields.XimgField = XimgField;
|
|
98
106
|
|
|
99
|
-
}(jsGrid, jQuery));
|
|
107
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid, $, undefined) {
|
|
1
|
+
(function(jsGrid, $, undefined) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.Xjsoneditor.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
// Standalone: does not extend jsGrid.TextAreaField, only jsGrid.Field.
|
|
4
12
|
|
|
@@ -162,4 +170,4 @@
|
|
|
162
170
|
|
|
163
171
|
jsGrid.fields.Xjsoneditor = Xjsoneditor;
|
|
164
172
|
|
|
165
|
-
}(jsGrid, jQuery));
|
|
173
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
(function(jsGrid, $, undefined) {
|
|
2
2
|
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.Xnumber.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
|
|
3
11
|
// Standalone: does not extend jsGrid.NumberField or Xtext, only jsGrid.Field.
|
|
4
12
|
|
|
5
13
|
var Field = jsGrid.Field;
|
|
@@ -81,4 +89,4 @@
|
|
|
81
89
|
|
|
82
90
|
jsGrid.fields.Xnumber = Xnumber;
|
|
83
91
|
|
|
84
|
-
}(jsGrid, jQuery));
|
|
92
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid, $, undefined) {
|
|
1
|
+
(function(jsGrid, $, undefined) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.Xselect.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
// Standalone: does not extend jsGrid.SelectField, only jsGrid.Field.
|
|
4
12
|
|
|
@@ -173,4 +181,4 @@
|
|
|
173
181
|
|
|
174
182
|
jsGrid.fields.Xselect = Xselect;
|
|
175
183
|
|
|
176
|
-
}(jsGrid, jQuery));
|
|
184
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
(function(jsGrid, $, undefined) {
|
|
2
2
|
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.Xtext.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
|
|
3
11
|
// Standalone: does not extend jsGrid.TextField, only jsGrid.Field.
|
|
4
12
|
|
|
5
13
|
var Field = jsGrid.Field;
|
|
@@ -73,4 +81,4 @@
|
|
|
73
81
|
|
|
74
82
|
jsGrid.fields.Xtext = Xtext;
|
|
75
83
|
|
|
76
|
-
}(jsGrid, jQuery));
|
|
84
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid, $, undefined) {
|
|
1
|
+
(function(jsGrid, $, undefined) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.Xtextarea.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
// Standalone: does not extend jsGrid.TextAreaField, only jsGrid.Field.
|
|
4
12
|
|
|
@@ -94,4 +102,4 @@
|
|
|
94
102
|
|
|
95
103
|
jsGrid.fields.Xtextarea = Xtextarea;
|
|
96
104
|
|
|
97
|
-
}(jsGrid, jQuery));
|
|
105
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid, $, undefined) {
|
|
1
|
+
(function(jsGrid, $, undefined) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.checkbox.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
var Field = jsGrid.Field;
|
|
4
12
|
|
|
@@ -94,4 +102,4 @@
|
|
|
94
102
|
|
|
95
103
|
jsGrid.fields.checkbox = jsGrid.CheckboxField = CheckboxField;
|
|
96
104
|
|
|
97
|
-
}(jsGrid, jQuery));
|
|
105
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid, $, undefined) {
|
|
1
|
+
(function(jsGrid, $, undefined) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.control.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
var Field = jsGrid.Field;
|
|
4
12
|
|
|
@@ -221,4 +229,4 @@
|
|
|
221
229
|
|
|
222
230
|
jsGrid.fields.control = jsGrid.ControlField = ControlField;
|
|
223
231
|
|
|
224
|
-
}(jsGrid, jQuery));
|
|
232
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid, $, undefined) {
|
|
1
|
+
(function(jsGrid, $, undefined) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.number.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
var TextField = jsGrid.TextField;
|
|
4
12
|
|
|
@@ -38,4 +46,4 @@
|
|
|
38
46
|
|
|
39
47
|
jsGrid.fields.number = jsGrid.NumberField = NumberField;
|
|
40
48
|
|
|
41
|
-
}(jsGrid, jQuery));
|
|
49
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid, $, undefined) {
|
|
1
|
+
(function(jsGrid, $, undefined) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.select.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
var NumberField = jsGrid.NumberField;
|
|
4
12
|
var numberValueType = "number";
|
|
@@ -127,4 +135,4 @@
|
|
|
127
135
|
|
|
128
136
|
jsGrid.fields.select = jsGrid.SelectField = SelectField;
|
|
129
137
|
|
|
130
|
-
}(jsGrid, jQuery));
|
|
138
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid, $, undefined) {
|
|
1
|
+
(function(jsGrid, $, undefined) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.text.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
var Field = jsGrid.Field;
|
|
4
12
|
|
|
@@ -66,4 +74,4 @@
|
|
|
66
74
|
|
|
67
75
|
jsGrid.fields.text = jsGrid.TextField = TextField;
|
|
68
76
|
|
|
69
|
-
}(jsGrid, jQuery));
|
|
77
|
+
}(window.jsGrid, window.jQuery));
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid, $, undefined) {
|
|
1
|
+
(function(jsGrid, $, undefined) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] jsgrid.field.textarea.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
var TextField = jsGrid.TextField;
|
|
4
12
|
|
|
@@ -31,4 +39,4 @@
|
|
|
31
39
|
|
|
32
40
|
jsGrid.fields.textarea = jsGrid.TextAreaField = TextAreaField;
|
|
33
41
|
|
|
34
|
-
}(jsGrid, jQuery));
|
|
42
|
+
}(window.jsGrid, window.jQuery));
|
package/src/i18n/Ko.js
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid) {
|
|
1
|
+
(function(jsGrid) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] Ko.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
jsGrid.locales.ko = {
|
|
4
12
|
grid: {
|
|
@@ -28,6 +36,24 @@
|
|
|
28
36
|
insertButtonTooltip: "등록",
|
|
29
37
|
updateButtonTooltip: "업데이트",
|
|
30
38
|
cancelEditButtonTooltip: "변경 취소"
|
|
39
|
+
},
|
|
40
|
+
Xcontrol: {
|
|
41
|
+
searchModeButtonTooltip: "검색 모드",
|
|
42
|
+
insertModeButtonTooltip: "등록 모드",
|
|
43
|
+
editButtonTooltip: "수정",
|
|
44
|
+
deleteButtonTooltip: "삭제",
|
|
45
|
+
searchButtonTooltip: "검색",
|
|
46
|
+
clearFilterButtonTooltip: "초기화",
|
|
47
|
+
insertButtonTooltip: "등록",
|
|
48
|
+
updateButtonTooltip: "업데이트",
|
|
49
|
+
cancelEditButtonTooltip: "변경 취소"
|
|
50
|
+
},
|
|
51
|
+
XimgField: {
|
|
52
|
+
editButtonText: "파일 관리자 열기"
|
|
53
|
+
},
|
|
54
|
+
Xjsoneditor: {
|
|
55
|
+
editText: "편집기",
|
|
56
|
+
closeText: "저장"
|
|
31
57
|
}
|
|
32
58
|
},
|
|
33
59
|
|
|
@@ -43,4 +69,4 @@
|
|
|
43
69
|
}
|
|
44
70
|
};
|
|
45
71
|
|
|
46
|
-
}(jsGrid, jQuery));
|
|
72
|
+
}(window.jsGrid, window.jQuery));
|
package/src/i18n/cs.js
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid) {
|
|
1
|
+
(function(jsGrid) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] cs.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
jsGrid.locales.cs = {
|
|
4
12
|
grid: {
|
|
@@ -28,6 +36,24 @@
|
|
|
28
36
|
insertButtonTooltip: "Vložit",
|
|
29
37
|
updateButtonTooltip: "Upravit",
|
|
30
38
|
cancelEditButtonTooltip: "Zrušit editaci"
|
|
39
|
+
},
|
|
40
|
+
Xcontrol: {
|
|
41
|
+
searchModeButtonTooltip: "Přepnout na hledání",
|
|
42
|
+
insertModeButtonTooltip: "Přepnout na vlkádání",
|
|
43
|
+
editButtonTooltip: "Upravit",
|
|
44
|
+
deleteButtonTooltip: "Smazat",
|
|
45
|
+
searchButtonTooltip: "Hledat",
|
|
46
|
+
clearFilterButtonTooltip: "Smazat filtr",
|
|
47
|
+
insertButtonTooltip: "Vložit",
|
|
48
|
+
updateButtonTooltip: "Upravit",
|
|
49
|
+
cancelEditButtonTooltip: "Zrušit editaci"
|
|
50
|
+
},
|
|
51
|
+
XimgField: {
|
|
52
|
+
editButtonText: "Otevřít správce souborů"
|
|
53
|
+
},
|
|
54
|
+
Xjsoneditor: {
|
|
55
|
+
editText: "Editor",
|
|
56
|
+
closeText: "Uložit"
|
|
31
57
|
}
|
|
32
58
|
},
|
|
33
59
|
|
|
@@ -43,4 +69,4 @@
|
|
|
43
69
|
}
|
|
44
70
|
};
|
|
45
71
|
|
|
46
|
-
}(jsGrid, jQuery));
|
|
72
|
+
}(window.jsGrid, window.jQuery));
|
package/src/i18n/de.js
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid) {
|
|
1
|
+
(function(jsGrid) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] de.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
jsGrid.locales.de = {
|
|
4
12
|
grid: {
|
|
@@ -28,6 +36,24 @@
|
|
|
28
36
|
insertButtonTooltip: "Hinzufügen",
|
|
29
37
|
updateButtonTooltip: "Speichern",
|
|
30
38
|
cancelEditButtonTooltip: "Abbrechen"
|
|
39
|
+
},
|
|
40
|
+
Xcontrol: {
|
|
41
|
+
searchModeButtonTooltip: "Suche",
|
|
42
|
+
insertModeButtonTooltip: "Eintrag hinzufügen",
|
|
43
|
+
editButtonTooltip: "Bearbeiten",
|
|
44
|
+
deleteButtonTooltip: "Löschen",
|
|
45
|
+
searchButtonTooltip: "Eintrag finden",
|
|
46
|
+
clearFilterButtonTooltip: "Filter zurücksetzen",
|
|
47
|
+
insertButtonTooltip: "Hinzufügen",
|
|
48
|
+
updateButtonTooltip: "Speichern",
|
|
49
|
+
cancelEditButtonTooltip: "Abbrechen"
|
|
50
|
+
},
|
|
51
|
+
XimgField: {
|
|
52
|
+
editButtonText: "Dateimanager öffnen"
|
|
53
|
+
},
|
|
54
|
+
Xjsoneditor: {
|
|
55
|
+
editText: "Editor",
|
|
56
|
+
closeText: "Speichern"
|
|
31
57
|
}
|
|
32
58
|
},
|
|
33
59
|
|
|
@@ -43,4 +69,4 @@
|
|
|
43
69
|
}
|
|
44
70
|
};
|
|
45
71
|
|
|
46
|
-
}(jsGrid, jQuery));
|
|
72
|
+
}(window.jsGrid, window.jQuery));
|
package/src/i18n/el.js
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid) {
|
|
1
|
+
(function(jsGrid) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] el.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
jsGrid.locales.el = {
|
|
4
12
|
grid: {
|
|
@@ -28,6 +36,24 @@
|
|
|
28
36
|
insertButtonTooltip: "Εισαγωγή",
|
|
29
37
|
updateButtonTooltip: "Αποθήκευση",
|
|
30
38
|
cancelEditButtonTooltip: "Ακύρωση"
|
|
39
|
+
},
|
|
40
|
+
Xcontrol: {
|
|
41
|
+
searchModeButtonTooltip: "Αναζήτηση",
|
|
42
|
+
insertModeButtonTooltip: "Εισάγετε φίλτρο",
|
|
43
|
+
editButtonTooltip: "Επεξεργασία",
|
|
44
|
+
deleteButtonTooltip: "Διαγραφή",
|
|
45
|
+
searchButtonTooltip: "Εύρεση",
|
|
46
|
+
clearFilterButtonTooltip: "Αφαίρεση φίλτρου",
|
|
47
|
+
insertButtonTooltip: "Εισαγωγή",
|
|
48
|
+
updateButtonTooltip: "Αποθήκευση",
|
|
49
|
+
cancelEditButtonTooltip: "Ακύρωση"
|
|
50
|
+
},
|
|
51
|
+
XimgField: {
|
|
52
|
+
editButtonText: "Άνοιγμα διαχειριστή αρχείων"
|
|
53
|
+
},
|
|
54
|
+
Xjsoneditor: {
|
|
55
|
+
editText: "Επεξεργαστής",
|
|
56
|
+
closeText: "Αποθήκευση"
|
|
31
57
|
}
|
|
32
58
|
},
|
|
33
59
|
|
|
@@ -43,4 +69,4 @@
|
|
|
43
69
|
}
|
|
44
70
|
};
|
|
45
71
|
|
|
46
|
-
}(jsGrid, jQuery));
|
|
72
|
+
}(window.jsGrid, window.jQuery));
|
package/src/i18n/es.js
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid) {
|
|
1
|
+
(function(jsGrid) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] es.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
jsGrid.locales.es = {
|
|
4
12
|
grid: {
|
|
@@ -28,6 +36,24 @@
|
|
|
28
36
|
insertButtonTooltip: "Insertar",
|
|
29
37
|
updateButtonTooltip: "Actualizar",
|
|
30
38
|
cancelEditButtonTooltip: "Cancelar edición"
|
|
39
|
+
},
|
|
40
|
+
Xcontrol: {
|
|
41
|
+
searchModeButtonTooltip: "Cambiar a búsqueda",
|
|
42
|
+
insertModeButtonTooltip: "Cambiar a inserción",
|
|
43
|
+
editButtonTooltip: "Editar",
|
|
44
|
+
deleteButtonTooltip: "Suprimir",
|
|
45
|
+
searchButtonTooltip: "Buscar",
|
|
46
|
+
clearFilterButtonTooltip: "Borrar filtro",
|
|
47
|
+
insertButtonTooltip: "Insertar",
|
|
48
|
+
updateButtonTooltip: "Actualizar",
|
|
49
|
+
cancelEditButtonTooltip: "Cancelar edición"
|
|
50
|
+
},
|
|
51
|
+
XimgField: {
|
|
52
|
+
editButtonText: "Abrir gestor de archivos"
|
|
53
|
+
},
|
|
54
|
+
Xjsoneditor: {
|
|
55
|
+
editText: "Editor",
|
|
56
|
+
closeText: "Guardar"
|
|
31
57
|
}
|
|
32
58
|
},
|
|
33
59
|
|
|
@@ -43,4 +69,4 @@
|
|
|
43
69
|
}
|
|
44
70
|
};
|
|
45
71
|
|
|
46
|
-
}(jsGrid, jQuery));
|
|
72
|
+
}(window.jsGrid, window.jQuery));
|
package/src/i18n/fa.js
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid) {
|
|
1
|
+
(function(jsGrid) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] fa.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
jsGrid.locales.fa = {
|
|
4
12
|
grid: {
|
|
@@ -28,6 +36,24 @@
|
|
|
28
36
|
insertButtonTooltip: "درج",
|
|
29
37
|
updateButtonTooltip: "به روز رسانی",
|
|
30
38
|
cancelEditButtonTooltip: "لغو ویرایش"
|
|
39
|
+
},
|
|
40
|
+
Xcontrol: {
|
|
41
|
+
searchModeButtonTooltip: "تغییر به حالت جستجو",
|
|
42
|
+
insertModeButtonTooltip: "تغییر به حالت درج",
|
|
43
|
+
editButtonTooltip: "تغییر به حالت ویرایش",
|
|
44
|
+
deleteButtonTooltip: "حذف",
|
|
45
|
+
searchButtonTooltip: "جستجو",
|
|
46
|
+
clearFilterButtonTooltip: "پاک کردن فیلترها",
|
|
47
|
+
insertButtonTooltip: "درج",
|
|
48
|
+
updateButtonTooltip: "به روز رسانی",
|
|
49
|
+
cancelEditButtonTooltip: "لغو ویرایش"
|
|
50
|
+
},
|
|
51
|
+
XimgField: {
|
|
52
|
+
editButtonText: "باز کردن مدیر فایل"
|
|
53
|
+
},
|
|
54
|
+
Xjsoneditor: {
|
|
55
|
+
editText: "ویرایشگر",
|
|
56
|
+
closeText: "ذخیره"
|
|
31
57
|
}
|
|
32
58
|
},
|
|
33
59
|
|
|
@@ -43,4 +69,4 @@
|
|
|
43
69
|
}
|
|
44
70
|
};
|
|
45
71
|
|
|
46
|
-
}(jsGrid, jQuery));
|
|
72
|
+
}(window.jsGrid, window.jQuery));
|
package/src/i18n/fr.js
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid) {
|
|
1
|
+
(function(jsGrid) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] fr.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
jsGrid.locales.fr = {
|
|
4
12
|
grid: {
|
|
@@ -28,6 +36,24 @@
|
|
|
28
36
|
insertButtonTooltip: "Ajouter",
|
|
29
37
|
updateButtonTooltip: "Sauvegarder",
|
|
30
38
|
cancelEditButtonTooltip: "Annuler"
|
|
39
|
+
},
|
|
40
|
+
Xcontrol: {
|
|
41
|
+
searchModeButtonTooltip: "Recherche",
|
|
42
|
+
insertModeButtonTooltip: "Ajouter une entrée",
|
|
43
|
+
editButtonTooltip: "Changer",
|
|
44
|
+
deleteButtonTooltip: "Effacer",
|
|
45
|
+
searchButtonTooltip: "Trouve",
|
|
46
|
+
clearFilterButtonTooltip: "Effacer",
|
|
47
|
+
insertButtonTooltip: "Ajouter",
|
|
48
|
+
updateButtonTooltip: "Sauvegarder",
|
|
49
|
+
cancelEditButtonTooltip: "Annuler"
|
|
50
|
+
},
|
|
51
|
+
XimgField: {
|
|
52
|
+
editButtonText: "Ouvrir le gestionnaire de fichiers"
|
|
53
|
+
},
|
|
54
|
+
Xjsoneditor: {
|
|
55
|
+
editText: "Éditeur",
|
|
56
|
+
closeText: "Enregistrer"
|
|
31
57
|
}
|
|
32
58
|
},
|
|
33
59
|
|
|
@@ -43,5 +69,5 @@
|
|
|
43
69
|
}
|
|
44
70
|
};
|
|
45
71
|
|
|
46
|
-
}(jsGrid, jQuery));
|
|
72
|
+
}(window.jsGrid, window.jQuery));
|
|
47
73
|
|
package/src/i18n/he.js
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
(function(jsGrid) {
|
|
1
|
+
(function(jsGrid) {
|
|
2
|
+
|
|
3
|
+
if (!jsGrid) {
|
|
4
|
+
if (window.console) {
|
|
5
|
+
console.error("[jsxgrid] he.js was loaded before the jsxgrid engine (jsxgrid.js) - include the engine first.");
|
|
6
|
+
}
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
|
|
2
10
|
|
|
3
11
|
jsGrid.locales.he = {
|
|
4
12
|
grid: {
|
|
@@ -28,6 +36,24 @@
|
|
|
28
36
|
insertButtonTooltip: "הכנסה",
|
|
29
37
|
updateButtonTooltip: "עדכון",
|
|
30
38
|
cancelEditButtonTooltip: "ביטול עריכה"
|
|
39
|
+
},
|
|
40
|
+
Xcontrol: {
|
|
41
|
+
searchModeButtonTooltip: "ביצוע חיפוש",
|
|
42
|
+
insertModeButtonTooltip: "ביצוע עריכת שורה",
|
|
43
|
+
editButtonTooltip: "עריכה",
|
|
44
|
+
deleteButtonTooltip: "מחיקה",
|
|
45
|
+
searchButtonTooltip: "חיפוש",
|
|
46
|
+
clearFilterButtonTooltip: "ניקוי מסנן",
|
|
47
|
+
insertButtonTooltip: "הכנסה",
|
|
48
|
+
updateButtonTooltip: "עדכון",
|
|
49
|
+
cancelEditButtonTooltip: "ביטול עריכה"
|
|
50
|
+
},
|
|
51
|
+
XimgField: {
|
|
52
|
+
editButtonText: "פתח מנהל קבצים"
|
|
53
|
+
},
|
|
54
|
+
Xjsoneditor: {
|
|
55
|
+
editText: "עורך",
|
|
56
|
+
closeText: "שמור"
|
|
31
57
|
}
|
|
32
58
|
},
|
|
33
59
|
|
|
@@ -43,4 +69,4 @@
|
|
|
43
69
|
}
|
|
44
70
|
};
|
|
45
71
|
|
|
46
|
-
}(jsGrid, jQuery));
|
|
72
|
+
}(window.jsGrid, window.jQuery));
|