jsxgrid 2.0.0 → 2.2.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 +65 -0
- package/dist/fields/jsgrid.field.XDateTimeField.min.js +1 -1
- package/dist/fields/jsgrid.field.XRowSelectField.min.js +1 -1
- package/dist/fields/jsgrid.field.Xcheckbox.min.js +1 -1
- package/dist/fields/jsgrid.field.Xcontrol.min.js +6 -0
- package/dist/fields/jsgrid.field.XimgField.min.js +1 -1
- package/dist/fields/jsgrid.field.Xjsoneditor.min.js +1 -1
- package/dist/fields/jsgrid.field.Xnumber.min.js +6 -0
- package/dist/fields/jsgrid.field.Xselect.min.js +1 -1
- package/dist/fields/jsgrid.field.Xtext.min.js +6 -0
- package/dist/fields/jsgrid.field.Xtextarea.min.js +1 -1
- 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 +18 -0
- package/dist/i18n/jsgrid-cs.js +18 -0
- package/dist/i18n/jsgrid-de.js +18 -0
- package/dist/i18n/jsgrid-el.js +18 -0
- package/dist/i18n/jsgrid-es.js +18 -0
- package/dist/i18n/jsgrid-fa.js +18 -0
- package/dist/i18n/jsgrid-fr.js +18 -0
- package/dist/i18n/jsgrid-he.js +18 -0
- package/dist/i18n/jsgrid-it.js +18 -0
- package/dist/i18n/jsgrid-ja.js +18 -0
- package/dist/i18n/jsgrid-ka.js +18 -0
- package/dist/i18n/jsgrid-lt.js +18 -0
- package/dist/i18n/jsgrid-pl.js +18 -0
- package/dist/i18n/jsgrid-pt-br.js +18 -0
- package/dist/i18n/jsgrid-pt.js +18 -0
- package/dist/i18n/jsgrid-ru.js +18 -0
- package/dist/i18n/jsgrid-tr.js +18 -0
- package/dist/i18n/jsgrid-zh-cn.js +18 -0
- package/dist/i18n/jsgrid-zh-tw.js +18 -0
- package/dist/jsxgrid-fields.js +1 -1
- package/dist/jsxgrid-fields.min.js +1 -1
- package/dist/jsxgrid-theme.css +1 -1
- package/dist/jsxgrid-xfields.js +393 -2
- package/dist/jsxgrid-xfields.min.js +2 -2
- package/dist/jsxgrid.css +1 -1
- package/dist/jsxgrid.js +52 -5
- package/dist/jsxgrid.min.js +2 -2
- package/package.json +1 -1
- package/src/fields/jsgrid.field.Xcontrol.js +229 -0
- package/src/fields/jsgrid.field.Xnumber.js +84 -0
- package/src/fields/jsgrid.field.Xtext.js +76 -0
- package/src/i18n/Ko.js +18 -0
- package/src/i18n/cs.js +18 -0
- package/src/i18n/de.js +18 -0
- package/src/i18n/el.js +18 -0
- package/src/i18n/es.js +18 -0
- package/src/i18n/fa.js +18 -0
- package/src/i18n/fr.js +18 -0
- package/src/i18n/he.js +18 -0
- package/src/i18n/it.js +18 -0
- package/src/i18n/ja.js +18 -0
- package/src/i18n/ka.js +18 -0
- package/src/i18n/lt.js +18 -0
- package/src/i18n/pl.js +18 -0
- package/src/i18n/pt-br.js +18 -0
- package/src/i18n/pt.js +18 -0
- package/src/i18n/ru.js +18 -0
- package/src/i18n/tr.js +18 -0
- package/src/i18n/zh-cn.js +18 -0
- package/src/i18n/zh-tw.js +18 -0
- package/src/jsgrid.core.js +44 -2
- package/src/jsgrid.validation.js +6 -1
package/README.md
CHANGED
|
@@ -104,6 +104,7 @@ The config object may contain following options (default values are specified be
|
|
|
104
104
|
{
|
|
105
105
|
fields: [],
|
|
106
106
|
data: [],
|
|
107
|
+
locale: null, // per-instance locale, see Localization section
|
|
107
108
|
|
|
108
109
|
autoload: false,
|
|
109
110
|
controller: {
|
|
@@ -680,6 +681,29 @@ never filters) supports a shared `defaultSelected` convention: a value used to p
|
|
|
680
681
|
*first* time its filter row is rendered, then reset to `null` so it doesn't keep overriding what the user
|
|
681
682
|
searches for afterwards.
|
|
682
683
|
|
|
684
|
+
As of `Xtext`/`Xnumber`/`Xcontrol`, every native field type (`text`, `number`, `select`, `checkbox`,
|
|
685
|
+
`textarea`, `control`) now has an X-branded equivalent — the native set (`dist/jsxgrid-fields.js`) is kept
|
|
686
|
+
around as legacy/optional, with new work going into the X set going forward.
|
|
687
|
+
|
|
688
|
+
#### Xtext
|
|
689
|
+
|
|
690
|
+
Drop-in replacement for `text`.
|
|
691
|
+
|
|
692
|
+
| Option | Default | Description |
|
|
693
|
+
|---|---|---|
|
|
694
|
+
| `readOnly` | `false` | Whether the input is readonly. |
|
|
695
|
+
| `defaultSelected` | `null` | A string to preset the filter input with. |
|
|
696
|
+
|
|
697
|
+
#### Xnumber
|
|
698
|
+
|
|
699
|
+
Drop-in replacement for `number`. Standalone — does not extend `Xtext`, only `jsGrid.Field` directly, same as
|
|
700
|
+
every other X-field.
|
|
701
|
+
|
|
702
|
+
| Option | Default | Description |
|
|
703
|
+
|---|---|---|
|
|
704
|
+
| `readOnly` | `false` | Whether the input is readonly. |
|
|
705
|
+
| `defaultSelected` | `null` | A number (or numeric string) to preset the filter input with. |
|
|
706
|
+
|
|
683
707
|
#### Xcheckbox
|
|
684
708
|
|
|
685
709
|
Drop-in replacement for `checkbox`. Returns `1`/`0` instead of `true`/`false`, which avoids a lot of backend
|
|
@@ -756,6 +780,12 @@ Date/datetime field backed by a native `<input type="datetime-local">` (or whate
|
|
|
756
780
|
| `options` | built-in `Intl.DateTimeFormat` options | Passed to `toLocaleDateString()` when rendering the item view. Empty values render as an empty string. |
|
|
757
781
|
| `defaultSelected` | `null` | A value (matching `datePickerType`'s input format) to preset the filter with. When `dateRange` is `true`, pass `{from, to}` instead. |
|
|
758
782
|
|
|
783
|
+
#### Xcontrol
|
|
784
|
+
|
|
785
|
+
Drop-in replacement for `control`. Already standalone even as a native field (extends `jsGrid.Field`
|
|
786
|
+
directly), so this is a straight rename — no behavior changes, no `defaultSelected` (nothing to filter by).
|
|
787
|
+
Same custom properties as [`control`](#control).
|
|
788
|
+
|
|
759
789
|
#### popup.basic
|
|
760
790
|
|
|
761
791
|
A minimal, jQuery-only modal used by `Xjsoneditor` (and available for your own use) as `jsGrid.popup` /
|
|
@@ -2058,6 +2088,41 @@ Here is how localization config looks like for Spanish [i18n/es.js](src/i18n/es.
|
|
|
2058
2088
|
|
|
2059
2089
|
Find all available locales [here](src/i18n).
|
|
2060
2090
|
|
|
2091
|
+
### Per-instance locale (jsxgrid extension, not in upstream jsGrid)
|
|
2092
|
+
|
|
2093
|
+
`jsGrid.locale()` is global — it patches the shared `Grid`/field prototypes, so it affects every grid on the
|
|
2094
|
+
page at once. If you need different grids on the same page in different languages simultaneously, pass a
|
|
2095
|
+
`locale` option directly in the grid config instead:
|
|
2096
|
+
|
|
2097
|
+
```javascript
|
|
2098
|
+
|
|
2099
|
+
$("#grid").jsGrid({
|
|
2100
|
+
locale: "ru", // a key from jsGrid.locales, or an inline {grid, fields} config object
|
|
2101
|
+
...
|
|
2102
|
+
});
|
|
2103
|
+
|
|
2104
|
+
```
|
|
2105
|
+
|
|
2106
|
+
This only affects that one grid instance (and its fields) — it's applied as instance-level properties, not
|
|
2107
|
+
prototype patches, so it never touches other grids. An explicit option in the grid/field config still wins
|
|
2108
|
+
over the locale (e.g. `{ type: "Xcontrol", deleteButtonTooltip: "Custom" }` keeps `"Custom"` even under a
|
|
2109
|
+
`ru` locale). The `grid` and `fields` sections of a locale are read this way, which already covers the load
|
|
2110
|
+
indicator message too - `Grid` always builds it from the grid's own `loadMessage` option (part of the
|
|
2111
|
+
`grid` section), never from `LoadIndicator.prototype.message` directly.
|
|
2112
|
+
|
|
2113
|
+
`validators` messages follow the grid's own `locale` as well: each grid has its own `Validation` instance
|
|
2114
|
+
(`this._validation`, built once at construction), which is handed the locale's `validators` section as
|
|
2115
|
+
`validatorsLocale` and checks it before falling back to the shared `jsGrid.validators[name].message`
|
|
2116
|
+
default. Precedence, same as fields: an explicit `message` on the validation rule itself still wins over
|
|
2117
|
+
the locale, which still wins over the built-in English default.
|
|
2118
|
+
|
|
2119
|
+
**Interaction with `jsGrid.locale()`**: since a grid's own `locale` option sets instance properties (which
|
|
2120
|
+
always shadow prototype properties) while `jsGrid.locale()` only ever patches prototypes, a grid constructed
|
|
2121
|
+
with an explicit `locale` is permanently pinned to it — a later `jsGrid.locale()` call (e.g. a
|
|
2122
|
+
single-page-app switching the UI language at runtime, no full reload) never overrides it, while grids
|
|
2123
|
+
without their own `locale` keep following the global switch as before. This is guaranteed behavior, not an
|
|
2124
|
+
implementation detail to rely on carefully.
|
|
2125
|
+
|
|
2061
2126
|
|
|
2062
2127
|
## Sorting Strategies
|
|
2063
2128
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* jsxgrid v2.2.0 (https://github.com/rok9ru/jsxgrid#readme)
|
|
3
|
+
* (c) 2026 Mikhail Kremza
|
|
4
|
+
* Licensed under MIT
|
|
5
|
+
*/
|
|
6
|
+
((t,r)=>{var e=t.Field;function i(t){e.call(this,t),this.includeInDataExport=!1,this._configInitialized=!1}i.prototype=new e({css:"jsgrid-control-field",align:"center",width:50,filtering:!1,inserting:!1,editing:!1,sorting:!1,buttonClass:"jsgrid-button",modeButtonClass:"jsgrid-mode-button",modeOnButtonClass:"jsgrid-mode-on-button",searchModeButtonClass:"jsgrid-search-mode-button",insertModeButtonClass:"jsgrid-insert-mode-button",editButtonClass:"jsgrid-edit-button",deleteButtonClass:"jsgrid-delete-button",searchButtonClass:"jsgrid-search-button",clearFilterButtonClass:"jsgrid-clear-filter-button",insertButtonClass:"jsgrid-insert-button",updateButtonClass:"jsgrid-update-button",cancelEditButtonClass:"jsgrid-cancel-edit-button",searchModeButtonTooltip:"Switch to searching",insertModeButtonTooltip:"Switch to inserting",editButtonTooltip:"Edit",deleteButtonTooltip:"Delete",searchButtonTooltip:"Search",clearFilterButtonTooltip:"Clear filter",insertButtonTooltip:"Insert",updateButtonTooltip:"Update",cancelEditButtonTooltip:"Cancel edit",editButton:!0,deleteButton:!0,clearFilterButton:!0,modeSwitchButton:!0,_initConfig:function(){this._hasFiltering=this._grid.filtering,this._hasInserting=this._grid.inserting,this._hasInserting&&this.modeSwitchButton&&(this._grid.inserting=!1),this._configInitialized=!0},headerTemplate:function(){this._configInitialized||this._initConfig();var t=this._hasFiltering,e=this._hasInserting;return this.modeSwitchButton&&(t||e)?t&&!e?this._createFilterSwitchButton():e&&!t?this._createInsertSwitchButton():this._createModeSwitchButton():""},itemTemplate:function(t,e){var i=r([]);return this.editButton&&(i=i.add(this._createEditButton(e))),i=this.deleteButton?i.add(this._createDeleteButton(e)):i},filterTemplate:function(){var t=this._createSearchButton();return this.clearFilterButton?t.add(this._createClearFilterButton()):t},insertTemplate:function(){return this._createInsertButton()},editTemplate:function(){return this._createUpdateButton().add(this._createCancelEditButton())},_createFilterSwitchButton:function(){return this._createOnOffSwitchButton("filtering",this.searchModeButtonClass,!0)},_createInsertSwitchButton:function(){return this._createOnOffSwitchButton("inserting",this.insertModeButtonClass,!1)},_createOnOffSwitchButton:function(e,t,i){var n=i,o=r.proxy(function(){s.toggleClass(this.modeOnButtonClass,n)},this),s=this._createGridButton(this.modeButtonClass+" "+t,"",function(t){n=!n,t.option(e,n),o()});return o(),s},_createModeSwitchButton:function(){var e=!1,i=r.proxy(function(){t.attr("title",e?this.searchModeButtonTooltip:this.insertModeButtonTooltip).toggleClass(this.insertModeButtonClass,!e).toggleClass(this.searchModeButtonClass,e)},this),t=this._createGridButton(this.modeButtonClass,"",function(t){e=!e,t.option("inserting",e),t.option("filtering",!e),i()});return i(),t},_createEditButton:function(i){return this._createGridButton(this.editButtonClass,this.editButtonTooltip,function(t,e){t.editItem(i),e.stopPropagation()})},_createDeleteButton:function(i){return this._createGridButton(this.deleteButtonClass,this.deleteButtonTooltip,function(t,e){t.deleteItem(i),e.stopPropagation()})},_createSearchButton:function(){return this._createGridButton(this.searchButtonClass,this.searchButtonTooltip,function(t){t.search()})},_createClearFilterButton:function(){return this._createGridButton(this.clearFilterButtonClass,this.clearFilterButtonTooltip,function(t){t.clearFilter()})},_createInsertButton:function(){return this._createGridButton(this.insertButtonClass,this.insertButtonTooltip,function(t){t.insertItem().done(function(){t.clearInsert()})})},_createUpdateButton:function(){return this._createGridButton(this.updateButtonClass,this.updateButtonTooltip,function(t,e){t.updateItem(),e.stopPropagation()})},_createCancelEditButton:function(){return this._createGridButton(this.cancelEditButtonClass,this.cancelEditButtonTooltip,function(t,e){t.cancelEdit(),e.stopPropagation()})},_createGridButton:function(t,e,i){var n=this._grid;return r("<input>").addClass(this.buttonClass).addClass(t).attr({type:"button",title:e}).on("click",function(t){i(n,t)})},editValue:function(){return""}}),t.fields.Xcontrol=i})(jsGrid,jQuery);
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* jsxgrid v2.2.0 (https://github.com/rok9ru/jsxgrid#readme)
|
|
3
|
+
* (c) 2026 Mikhail Kremza
|
|
4
|
+
* Licensed under MIT
|
|
5
|
+
*/
|
|
6
|
+
((t,e,r)=>{function i(t){n.call(this,t)}var n=t.Field;i.prototype=new n({sorter:"number",align:"right",autosearch:!0,readOnly:!1,defaultSelected:null,filterTemplate:function(){var e,t;return this.filtering?(e=this._grid,t=this.filterControl=this._createTextBox(),this.autosearch&&t.on("keypress",function(t){13===t.which&&(e.search(),t.preventDefault())}),null!==this.defaultSelected&&(t.val(this.defaultSelected),this.defaultSelected=null),t):""},insertTemplate:function(){return this.inserting?this.insertControl=this._createTextBox():""},editTemplate:function(t){var e;return this.editing?((e=this.editControl=this._createTextBox()).val(t),e):this.itemTemplate.apply(this,arguments)},filterValue:function(){return this.filterControl.val()?parseInt(this.filterControl.val()||0,10):r},insertValue:function(){return this.insertControl.val()?parseInt(this.insertControl.val()||0,10):r},editValue:function(){return this.editControl.val()?parseInt(this.editControl.val()||0,10):r},_createTextBox:function(){return e("<input>").attr("type","number").prop("readonly",!!this.readOnly)}}),t.fields.Xnumber=i})(jsGrid,jQuery);
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* jsxgrid v2.2.0 (https://github.com/rok9ru/jsxgrid#readme)
|
|
3
|
+
* (c) 2026 Mikhail Kremza
|
|
4
|
+
* Licensed under MIT
|
|
5
|
+
*/
|
|
6
|
+
((t,e)=>{function i(t){r.call(this,t)}var r=t.Field;i.prototype=new r({autosearch:!0,readOnly:!1,defaultSelected:null,filterTemplate:function(){var e,t;return this.filtering?(e=this._grid,t=this.filterControl=this._createTextBox(),this.autosearch&&t.on("keypress",function(t){13===t.which&&(e.search(),t.preventDefault())}),null!==this.defaultSelected&&(t.val(this.defaultSelected),this.defaultSelected=null),t):""},insertTemplate:function(){return this.inserting?this.insertControl=this._createTextBox():""},editTemplate:function(t){var e;return this.editing?((e=this.editControl=this._createTextBox()).val(t),e):this.itemTemplate.apply(this,arguments)},filterValue:function(){return this.filterControl.val()},insertValue:function(){return this.insertControl.val()},editValue:function(){return this.editControl.val()},_createTextBox:function(){return e("<input>").attr("type","text").prop("readonly",!!this.readOnly)}}),t.fields.Xtext=i})(jsGrid,jQuery);
|
package/dist/i18n/jsgrid-Ko.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "등록",
|
|
29
29
|
updateButtonTooltip: "업데이트",
|
|
30
30
|
cancelEditButtonTooltip: "변경 취소"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "검색 모드",
|
|
34
|
+
insertModeButtonTooltip: "등록 모드",
|
|
35
|
+
editButtonTooltip: "수정",
|
|
36
|
+
deleteButtonTooltip: "삭제",
|
|
37
|
+
searchButtonTooltip: "검색",
|
|
38
|
+
clearFilterButtonTooltip: "초기화",
|
|
39
|
+
insertButtonTooltip: "등록",
|
|
40
|
+
updateButtonTooltip: "업데이트",
|
|
41
|
+
cancelEditButtonTooltip: "변경 취소"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "파일 관리자 열기"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "편집기",
|
|
48
|
+
closeText: "저장"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-cs.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "Vložit",
|
|
29
29
|
updateButtonTooltip: "Upravit",
|
|
30
30
|
cancelEditButtonTooltip: "Zrušit editaci"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "Přepnout na hledání",
|
|
34
|
+
insertModeButtonTooltip: "Přepnout na vlkádání",
|
|
35
|
+
editButtonTooltip: "Upravit",
|
|
36
|
+
deleteButtonTooltip: "Smazat",
|
|
37
|
+
searchButtonTooltip: "Hledat",
|
|
38
|
+
clearFilterButtonTooltip: "Smazat filtr",
|
|
39
|
+
insertButtonTooltip: "Vložit",
|
|
40
|
+
updateButtonTooltip: "Upravit",
|
|
41
|
+
cancelEditButtonTooltip: "Zrušit editaci"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "Otevřít správce souborů"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "Editor",
|
|
48
|
+
closeText: "Uložit"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-de.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "Hinzufügen",
|
|
29
29
|
updateButtonTooltip: "Speichern",
|
|
30
30
|
cancelEditButtonTooltip: "Abbrechen"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "Suche",
|
|
34
|
+
insertModeButtonTooltip: "Eintrag hinzufügen",
|
|
35
|
+
editButtonTooltip: "Bearbeiten",
|
|
36
|
+
deleteButtonTooltip: "Löschen",
|
|
37
|
+
searchButtonTooltip: "Eintrag finden",
|
|
38
|
+
clearFilterButtonTooltip: "Filter zurücksetzen",
|
|
39
|
+
insertButtonTooltip: "Hinzufügen",
|
|
40
|
+
updateButtonTooltip: "Speichern",
|
|
41
|
+
cancelEditButtonTooltip: "Abbrechen"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "Dateimanager öffnen"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "Editor",
|
|
48
|
+
closeText: "Speichern"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-el.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "Εισαγωγή",
|
|
29
29
|
updateButtonTooltip: "Αποθήκευση",
|
|
30
30
|
cancelEditButtonTooltip: "Ακύρωση"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "Αναζήτηση",
|
|
34
|
+
insertModeButtonTooltip: "Εισάγετε φίλτρο",
|
|
35
|
+
editButtonTooltip: "Επεξεργασία",
|
|
36
|
+
deleteButtonTooltip: "Διαγραφή",
|
|
37
|
+
searchButtonTooltip: "Εύρεση",
|
|
38
|
+
clearFilterButtonTooltip: "Αφαίρεση φίλτρου",
|
|
39
|
+
insertButtonTooltip: "Εισαγωγή",
|
|
40
|
+
updateButtonTooltip: "Αποθήκευση",
|
|
41
|
+
cancelEditButtonTooltip: "Ακύρωση"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "Άνοιγμα διαχειριστή αρχείων"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "Επεξεργαστής",
|
|
48
|
+
closeText: "Αποθήκευση"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-es.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "Insertar",
|
|
29
29
|
updateButtonTooltip: "Actualizar",
|
|
30
30
|
cancelEditButtonTooltip: "Cancelar edición"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "Cambiar a búsqueda",
|
|
34
|
+
insertModeButtonTooltip: "Cambiar a inserción",
|
|
35
|
+
editButtonTooltip: "Editar",
|
|
36
|
+
deleteButtonTooltip: "Suprimir",
|
|
37
|
+
searchButtonTooltip: "Buscar",
|
|
38
|
+
clearFilterButtonTooltip: "Borrar filtro",
|
|
39
|
+
insertButtonTooltip: "Insertar",
|
|
40
|
+
updateButtonTooltip: "Actualizar",
|
|
41
|
+
cancelEditButtonTooltip: "Cancelar edición"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "Abrir gestor de archivos"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "Editor",
|
|
48
|
+
closeText: "Guardar"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-fa.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "درج",
|
|
29
29
|
updateButtonTooltip: "به روز رسانی",
|
|
30
30
|
cancelEditButtonTooltip: "لغو ویرایش"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "تغییر به حالت جستجو",
|
|
34
|
+
insertModeButtonTooltip: "تغییر به حالت درج",
|
|
35
|
+
editButtonTooltip: "تغییر به حالت ویرایش",
|
|
36
|
+
deleteButtonTooltip: "حذف",
|
|
37
|
+
searchButtonTooltip: "جستجو",
|
|
38
|
+
clearFilterButtonTooltip: "پاک کردن فیلترها",
|
|
39
|
+
insertButtonTooltip: "درج",
|
|
40
|
+
updateButtonTooltip: "به روز رسانی",
|
|
41
|
+
cancelEditButtonTooltip: "لغو ویرایش"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "باز کردن مدیر فایل"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "ویرایشگر",
|
|
48
|
+
closeText: "ذخیره"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-fr.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "Ajouter",
|
|
29
29
|
updateButtonTooltip: "Sauvegarder",
|
|
30
30
|
cancelEditButtonTooltip: "Annuler"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "Recherche",
|
|
34
|
+
insertModeButtonTooltip: "Ajouter une entrée",
|
|
35
|
+
editButtonTooltip: "Changer",
|
|
36
|
+
deleteButtonTooltip: "Effacer",
|
|
37
|
+
searchButtonTooltip: "Trouve",
|
|
38
|
+
clearFilterButtonTooltip: "Effacer",
|
|
39
|
+
insertButtonTooltip: "Ajouter",
|
|
40
|
+
updateButtonTooltip: "Sauvegarder",
|
|
41
|
+
cancelEditButtonTooltip: "Annuler"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "Ouvrir le gestionnaire de fichiers"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "Éditeur",
|
|
48
|
+
closeText: "Enregistrer"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-he.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "הכנסה",
|
|
29
29
|
updateButtonTooltip: "עדכון",
|
|
30
30
|
cancelEditButtonTooltip: "ביטול עריכה"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "ביצוע חיפוש",
|
|
34
|
+
insertModeButtonTooltip: "ביצוע עריכת שורה",
|
|
35
|
+
editButtonTooltip: "עריכה",
|
|
36
|
+
deleteButtonTooltip: "מחיקה",
|
|
37
|
+
searchButtonTooltip: "חיפוש",
|
|
38
|
+
clearFilterButtonTooltip: "ניקוי מסנן",
|
|
39
|
+
insertButtonTooltip: "הכנסה",
|
|
40
|
+
updateButtonTooltip: "עדכון",
|
|
41
|
+
cancelEditButtonTooltip: "ביטול עריכה"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "פתח מנהל קבצים"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "עורך",
|
|
48
|
+
closeText: "שמור"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-it.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "Inserisci",
|
|
29
29
|
updateButtonTooltip: "Aggiorna",
|
|
30
30
|
cancelEditButtonTooltip: "Annulla"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "Modallità ricerca",
|
|
34
|
+
insertModeButtonTooltip: "Modalità inserimento",
|
|
35
|
+
editButtonTooltip: "Modifica",
|
|
36
|
+
deleteButtonTooltip: "Cancella",
|
|
37
|
+
searchButtonTooltip: "Cerca",
|
|
38
|
+
clearFilterButtonTooltip: "Cancella filtri",
|
|
39
|
+
insertButtonTooltip: "Inserisci",
|
|
40
|
+
updateButtonTooltip: "Aggiorna",
|
|
41
|
+
cancelEditButtonTooltip: "Annulla"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "Apri gestore file"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "Editor",
|
|
48
|
+
closeText: "Salva"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-ja.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "登録",
|
|
29
29
|
updateButtonTooltip: "更新",
|
|
30
30
|
cancelEditButtonTooltip: "編集戻す"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "検索モードへ",
|
|
34
|
+
insertModeButtonTooltip: "登録モードへ",
|
|
35
|
+
editButtonTooltip: "編集",
|
|
36
|
+
deleteButtonTooltip: "削除",
|
|
37
|
+
searchButtonTooltip: "フィルター",
|
|
38
|
+
clearFilterButtonTooltip: "クリア",
|
|
39
|
+
insertButtonTooltip: "登録",
|
|
40
|
+
updateButtonTooltip: "更新",
|
|
41
|
+
cancelEditButtonTooltip: "編集戻す"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "ファイルマネージャーを開く"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "エディター",
|
|
48
|
+
closeText: "保存"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-ka.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "დამატება",
|
|
29
29
|
updateButtonTooltip: "შენახვა",
|
|
30
30
|
cancelEditButtonTooltip: "გაუქმება"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "ძებნა",
|
|
34
|
+
insertModeButtonTooltip: "ჩანაწერის დამატება",
|
|
35
|
+
editButtonTooltip: "შესწორება",
|
|
36
|
+
deleteButtonTooltip: "წაშლა",
|
|
37
|
+
searchButtonTooltip: "ძებნა",
|
|
38
|
+
clearFilterButtonTooltip: "ფილტრის გასუფთავება",
|
|
39
|
+
insertButtonTooltip: "დამატება",
|
|
40
|
+
updateButtonTooltip: "შენახვა",
|
|
41
|
+
cancelEditButtonTooltip: "გაუქმება"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "ფაილების მენეჯერის გახსნა"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "რედაქტორი",
|
|
48
|
+
closeText: "შენახვა"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-lt.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "Pridėti",
|
|
29
29
|
updateButtonTooltip: "Išsaugoti",
|
|
30
30
|
cancelEditButtonTooltip: "Atšaukti"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "Paieška",
|
|
34
|
+
insertModeButtonTooltip: "Naujas įrašas",
|
|
35
|
+
editButtonTooltip: "Pakeisti",
|
|
36
|
+
deleteButtonTooltip: "Pašalinti",
|
|
37
|
+
searchButtonTooltip: "Surasti",
|
|
38
|
+
clearFilterButtonTooltip: "Išvalyti filtrą",
|
|
39
|
+
insertButtonTooltip: "Pridėti",
|
|
40
|
+
updateButtonTooltip: "Išsaugoti",
|
|
41
|
+
cancelEditButtonTooltip: "Atšaukti"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "Atidaryti failų tvarkyklę"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "Redaktorius",
|
|
48
|
+
closeText: "Išsaugoti"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-pl.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "Dodaj",
|
|
29
29
|
updateButtonTooltip: "Aktualizuj",
|
|
30
30
|
cancelEditButtonTooltip: "Anuluj edytowanie"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "Wyszukiwanie",
|
|
34
|
+
insertModeButtonTooltip: "Dodawanie",
|
|
35
|
+
editButtonTooltip: "Edytuj",
|
|
36
|
+
deleteButtonTooltip: "Usuń",
|
|
37
|
+
searchButtonTooltip: "Szukaj",
|
|
38
|
+
clearFilterButtonTooltip: "Wyczyść filtr",
|
|
39
|
+
insertButtonTooltip: "Dodaj",
|
|
40
|
+
updateButtonTooltip: "Aktualizuj",
|
|
41
|
+
cancelEditButtonTooltip: "Anuluj edytowanie"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "Otwórz menedżera plików"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "Edytor",
|
|
48
|
+
closeText: "Zapisz"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "Adicionar",
|
|
29
29
|
updateButtonTooltip: "Atualizar",
|
|
30
30
|
cancelEditButtonTooltip: "Cancelar Edição"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "Mudar para busca",
|
|
34
|
+
insertModeButtonTooltip: "Mudar para inserção",
|
|
35
|
+
editButtonTooltip: "Editar",
|
|
36
|
+
deleteButtonTooltip: "Remover",
|
|
37
|
+
searchButtonTooltip: "Buscar",
|
|
38
|
+
clearFilterButtonTooltip: "Remover filtro",
|
|
39
|
+
insertButtonTooltip: "Adicionar",
|
|
40
|
+
updateButtonTooltip: "Atualizar",
|
|
41
|
+
cancelEditButtonTooltip: "Cancelar Edição"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "Abrir gerenciador de arquivos"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "Editor",
|
|
48
|
+
closeText: "Salvar"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-pt.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "Adicionar",
|
|
29
29
|
updateButtonTooltip: "Atualizar",
|
|
30
30
|
cancelEditButtonTooltip: "Cancelar Edição"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "Mudar para busca",
|
|
34
|
+
insertModeButtonTooltip: "Mudar para inserção",
|
|
35
|
+
editButtonTooltip: "Editar",
|
|
36
|
+
deleteButtonTooltip: "Remover",
|
|
37
|
+
searchButtonTooltip: "Buscar",
|
|
38
|
+
clearFilterButtonTooltip: "Remover filtro",
|
|
39
|
+
insertButtonTooltip: "Adicionar",
|
|
40
|
+
updateButtonTooltip: "Atualizar",
|
|
41
|
+
cancelEditButtonTooltip: "Cancelar Edição"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "Abrir gestor de ficheiros"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "Editor",
|
|
48
|
+
closeText: "Guardar"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-ru.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "Добавить",
|
|
29
29
|
updateButtonTooltip: "Сохранить",
|
|
30
30
|
cancelEditButtonTooltip: "Отменить"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "Поиск",
|
|
34
|
+
insertModeButtonTooltip: "Добавить запись",
|
|
35
|
+
editButtonTooltip: "Изменить",
|
|
36
|
+
deleteButtonTooltip: "Удалить",
|
|
37
|
+
searchButtonTooltip: "Найти",
|
|
38
|
+
clearFilterButtonTooltip: "Очистить фильтр",
|
|
39
|
+
insertButtonTooltip: "Добавить",
|
|
40
|
+
updateButtonTooltip: "Сохранить",
|
|
41
|
+
cancelEditButtonTooltip: "Отменить"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "Открыть менеджер файлов"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "Редактор",
|
|
48
|
+
closeText: "Сохранить"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|
package/dist/i18n/jsgrid-tr.js
CHANGED
|
@@ -28,6 +28,24 @@
|
|
|
28
28
|
insertButtonTooltip: "Ekle",
|
|
29
29
|
updateButtonTooltip: "Güncelle",
|
|
30
30
|
cancelEditButtonTooltip: "Güncelleme iptali"
|
|
31
|
+
},
|
|
32
|
+
Xcontrol: {
|
|
33
|
+
searchModeButtonTooltip: "Arama moduna geç",
|
|
34
|
+
insertModeButtonTooltip: "Yeni kayıt moduna geç",
|
|
35
|
+
editButtonTooltip: "Değiştir",
|
|
36
|
+
deleteButtonTooltip: "Sil",
|
|
37
|
+
searchButtonTooltip: "Bul",
|
|
38
|
+
clearFilterButtonTooltip: "Filtreyi temizle",
|
|
39
|
+
insertButtonTooltip: "Ekle",
|
|
40
|
+
updateButtonTooltip: "Güncelle",
|
|
41
|
+
cancelEditButtonTooltip: "Güncelleme iptali"
|
|
42
|
+
},
|
|
43
|
+
XimgField: {
|
|
44
|
+
editButtonText: "Dosya yöneticisini aç"
|
|
45
|
+
},
|
|
46
|
+
Xjsoneditor: {
|
|
47
|
+
editText: "Düzenleyici",
|
|
48
|
+
closeText: "Kaydet"
|
|
31
49
|
}
|
|
32
50
|
},
|
|
33
51
|
|