jqgrid-jquery-rails 4.5.400 → 4.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/README.md +1 -1
  4. data/lib/jqgrid-jquery-rails/version.rb +2 -2
  5. data/spec/features/asset_pipeline_spec.rb +1 -1
  6. data/vendor/assets/javascripts/i18n/grid.locale-ar.js +128 -126
  7. data/vendor/assets/javascripts/i18n/grid.locale-bg.js +5 -3
  8. data/vendor/assets/javascripts/i18n/grid.locale-bg1251.js +1 -1
  9. data/vendor/assets/javascripts/i18n/grid.locale-cat.js +5 -3
  10. data/vendor/assets/javascripts/i18n/grid.locale-cn.js +5 -3
  11. data/vendor/assets/javascripts/i18n/grid.locale-cs.js +5 -3
  12. data/vendor/assets/javascripts/i18n/grid.locale-da.js +5 -3
  13. data/vendor/assets/javascripts/i18n/grid.locale-de.js +41 -39
  14. data/vendor/assets/javascripts/i18n/grid.locale-dk.js +5 -3
  15. data/vendor/assets/javascripts/i18n/grid.locale-el.js +5 -3
  16. data/vendor/assets/javascripts/i18n/grid.locale-en.js +5 -3
  17. data/vendor/assets/javascripts/i18n/grid.locale-es.js +5 -3
  18. data/vendor/assets/javascripts/i18n/grid.locale-fa.js +146 -144
  19. data/vendor/assets/javascripts/i18n/grid.locale-fi.js +131 -129
  20. data/vendor/assets/javascripts/i18n/grid.locale-fr.js +128 -126
  21. data/vendor/assets/javascripts/i18n/grid.locale-gl.js +5 -3
  22. data/vendor/assets/javascripts/i18n/grid.locale-he.js +5 -3
  23. data/vendor/assets/javascripts/i18n/grid.locale-hr.js +164 -162
  24. data/vendor/assets/javascripts/i18n/grid.locale-hr1250.js +164 -162
  25. data/vendor/assets/javascripts/i18n/grid.locale-hu.js +5 -3
  26. data/vendor/assets/javascripts/i18n/grid.locale-id.js +170 -168
  27. data/vendor/assets/javascripts/i18n/grid.locale-is.js +128 -126
  28. data/vendor/assets/javascripts/i18n/grid.locale-it.js +1 -1
  29. data/vendor/assets/javascripts/i18n/grid.locale-ja.js +6 -3
  30. data/vendor/assets/javascripts/i18n/grid.locale-kr.js +5 -3
  31. data/vendor/assets/javascripts/i18n/grid.locale-lt.js +5 -3
  32. data/vendor/assets/javascripts/i18n/grid.locale-mne.js +130 -128
  33. data/vendor/assets/javascripts/i18n/grid.locale-nl.js +5 -3
  34. data/vendor/assets/javascripts/i18n/grid.locale-no.js +1 -1
  35. data/vendor/assets/javascripts/i18n/grid.locale-pl.js +5 -3
  36. data/vendor/assets/javascripts/i18n/grid.locale-pt-br.js +4 -2
  37. data/vendor/assets/javascripts/i18n/grid.locale-pt.js +6 -4
  38. data/vendor/assets/javascripts/i18n/grid.locale-ro.js +5 -3
  39. data/vendor/assets/javascripts/i18n/grid.locale-ru.js +66 -64
  40. data/vendor/assets/javascripts/i18n/grid.locale-sk.js +5 -3
  41. data/vendor/assets/javascripts/i18n/grid.locale-sr-latin.js +130 -128
  42. data/vendor/assets/javascripts/i18n/grid.locale-sr.js +130 -128
  43. data/vendor/assets/javascripts/i18n/grid.locale-sv.js +5 -3
  44. data/vendor/assets/javascripts/i18n/grid.locale-th.js +130 -128
  45. data/vendor/assets/javascripts/i18n/grid.locale-tr.js +5 -3
  46. data/vendor/assets/javascripts/i18n/grid.locale-tw.js +6 -4
  47. data/vendor/assets/javascripts/i18n/grid.locale-ua.js +5 -3
  48. data/vendor/assets/javascripts/i18n/grid.locale-vi.js +5 -3
  49. data/vendor/assets/javascripts/jquery.jqGrid.js +1109 -536
  50. data/vendor/assets/stylesheets/ui.jqgrid.css +17 -8
  51. metadata +2 -2
@@ -13,8 +13,10 @@ a.extend(a.jgrid,{
13
13
  caption: "Zoeken...",
14
14
  Find: "Zoek",
15
15
  Reset: "Herstellen",
16
- odata: [{ oper:'eq', text:"gelijk aan"},{ oper:'ne', text:"niet gelijk aan"},{ oper:'lt', text:"kleiner dan"},{ oper:'le', text:"kleiner dan of gelijk aan"},{ oper:'gt', text:"groter dan"},{ oper:'ge', text:"groter dan of gelijk aan"},{ oper:'bw', text:"begint met"},{ oper:'bn', text:"begint niet met"},{ oper:'in', text:"is in"},{ oper:'ni', text:"is niet in"},{ oper:'ew', text:"eindigd met"},{ oper:'en', text:"eindigd niet met"},{ oper:'cn', text:"bevat"},{ oper:'nc', text:"bevat niet"}],
17
- groupOps: [{ op: "AND", text: "alle" }, { op: "OR", text: "een van de"}]
16
+ odata: [{ oper:'eq', text:"gelijk aan"},{ oper:'ne', text:"niet gelijk aan"},{ oper:'lt', text:"kleiner dan"},{ oper:'le', text:"kleiner dan of gelijk aan"},{ oper:'gt', text:"groter dan"},{ oper:'ge', text:"groter dan of gelijk aan"},{ oper:'bw', text:"begint met"},{ oper:'bn', text:"begint niet met"},{ oper:'in', text:"is in"},{ oper:'ni', text:"is niet in"},{ oper:'ew', text:"eindigd met"},{ oper:'en', text:"eindigd niet met"},{ oper:'cn', text:"bevat"},{ oper:'nc', text:"bevat niet"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],
17
+ groupOps: [{ op: "AND", text: "alle" }, { op: "OR", text: "een van de"}],
18
+ operandTitle : "Click to select search operation.",
19
+ resetTitle : "Reset Search Value"
18
20
  },
19
21
  edit:
20
22
  {
@@ -118,7 +120,7 @@ a.extend(a.jgrid,{
118
120
  },
119
121
  srcformat: "Y-m-d",
120
122
  newformat: "d/m/Y",
121
- parseRe : /[Tt\\\/:_;.,\t\s-]/,
123
+ parseRe : /[#%\\\/:_;.,\t\s-]/,
122
124
  masks:
123
125
  {
124
126
  ISO8601Long: "Y-m-d H:i:s",
@@ -1 +1 @@
1
- (function(a){a.jgrid= a.jgrid || {};a.jgrid.defaults={recordtext:"Rad {0} - {1}, totalt {2}",loadtext:"Laster...",pgtext:"Side {0} av {1}"};a.jgrid.search={caption:"S�k...",Find:"Finn",Reset:"Nullstill",odata:[{oper:'eq', text:"lik"},{oper:'ne', text:"forskjellig fra"},{oper:'lt', text:"mindre enn"},{oper:'le', text:"mindre eller lik"},{oper:'gt', text:"st�rre enn"},{oper:'ge', text:" st�rre eller lik"},{oper:'bw', text:"starter med"},{oper:'ew', text:"slutter med"},{oper:'cn', text:"inneholder"}]};a.jgrid.edit={addCaption:"Ny rad",editCaption:"Rediger",bSubmit:"Send",bCancel:"Avbryt",bClose:"Lukk",processData:"Laster...",msg:{required:"Felt er obligatorisk",number:"Legg inn et gyldig tall",minValue:"verdi m� v�re st�rre enn eller lik",maxValue:"verdi m� v�re mindre enn eller lik",email:"er ikke en gyldig e-post adresse",integer:"Legg inn et gyldig heltall",date:"Legg inn en gyldig dato",url:"er ikke en gyldig URL. Prefiks p�krevd ('http://' eller 'https://')",nodefined:" er ikke definert!",novalue:" returverdi er p�krevd!",customarray:"Tilpasset funksjon m� returnere en tabell!",customfcheck:"Tilpasset funksjon m� eksistere!"}};a.jgrid.view={caption:"�pne post",bClose:"Lukk"};a.jgrid.del={caption:"Slett",msg:"Slett valgte rad(er)?",bSubmit:"Slett",bCancel:"Avbryt",processData:"Behandler..."};a.jgrid.nav={edittext:" ",edittitle:"Rediger valgte rad(er)",addtext:" ",addtitle:"Legg til ny rad",deltext:" ",deltitle:"Slett valgte rad(er)",searchtext:" ",searchtitle:"S�k",refreshtext:"",refreshtitle:"Oppdater tabell",alertcap:"Advarsel",alerttext:"Velg rad",viewtext:" ",viewtitle:"�pne valgt rad"};a.jgrid.col={caption:"Vis/skjul kolonner",bSubmit:"Utf�r",bCancel:"Avbryt"};a.jgrid.errors={errcap:"Feil",nourl:"Ingen url er satt",norecords:"Ingen poster � behandle",model:"colNames og colModel har forskjellig lengde!"};a.jgrid.formatter={integer:{thousandsSeparator:" ",defaultValue:0},number:{decimalSeparator:",",thousandsSeparator:" ",decimalPlaces:2,defaulValue:0},currency:{decimalSeparator:",",thousandsSeparator:" ",decimalPlaces:2,prefix:"",suffix:"",defaulValue:0},date:{dayNames:["s�.","ma.","ti.","on.","to.","fr.","l�.","S�ndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","L�rdag"],monthNames:["jan.","feb.","mars","april","mai","juni","juli","aug.","sep.","okt.","nov.","des.","januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],AmPm:["","","",""],S:function(b){return"."},srcformat:"Y-m-d H:i:s",newformat:"Y-m-d H:i:s",parseRe : /[Tt\\\/:_;.,\t\s-]/,masks:{ISO8601Long:"Y-m-d H:i:s",ISO8601Short:"Y-m-d",ShortDate:"j.n.Y",LongDate:"l j. F Y",FullDateTime:"l j. F Y kl. G.i.s",MonthDay:"j. F",ShortTime:"H:i",LongTime:"H:i:s",SortableDateTime:"Y-m-d\\TH:i:s",UniversalSortableDateTime:"Y-m-d H:i:sO",YearMonth:"F Y"},reformatAfterEdit:false},baseLinkUrl:"",showAction:"show",addParam:"",checkbox:{disabled:true}}})(jQuery);
1
+ (function(a){a.jgrid= a.jgrid || {};a.jgrid.defaults={recordtext:"Rad {0} - {1}, totalt {2}",loadtext:"Laster...",pgtext:"Side {0} av {1}"};a.jgrid.search={caption:"S�k...",Find:"Finn",Reset:"Nullstill",odata:[{oper:'eq', text:"lik"},{oper:'ne', text:"forskjellig fra"},{oper:'lt', text:"mindre enn"},{oper:'le', text:"mindre eller lik"},{oper:'gt', text:"st�rre enn"},{oper:'ge', text:" st�rre eller lik"},{oper:'bw', text:"starter med"},{oper:'ew', text:"slutter med"},{oper:'cn', text:"inneholder"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],operandTitle : "Click to select search operation.",resetTitle : "Reset Search Value"};a.jgrid.edit={addCaption:"Ny rad",editCaption:"Rediger",bSubmit:"Send",bCancel:"Avbryt",bClose:"Lukk",processData:"Laster...",msg:{required:"Felt er obligatorisk",number:"Legg inn et gyldig tall",minValue:"verdi m� v�re st�rre enn eller lik",maxValue:"verdi m� v�re mindre enn eller lik",email:"er ikke en gyldig e-post adresse",integer:"Legg inn et gyldig heltall",date:"Legg inn en gyldig dato",url:"er ikke en gyldig URL. Prefiks p�krevd ('http://' eller 'https://')",nodefined:" er ikke definert!",novalue:" returverdi er p�krevd!",customarray:"Tilpasset funksjon m� returnere en tabell!",customfcheck:"Tilpasset funksjon m� eksistere!"}};a.jgrid.view={caption:"�pne post",bClose:"Lukk"};a.jgrid.del={caption:"Slett",msg:"Slett valgte rad(er)?",bSubmit:"Slett",bCancel:"Avbryt",processData:"Behandler..."};a.jgrid.nav={edittext:" ",edittitle:"Rediger valgte rad(er)",addtext:" ",addtitle:"Legg til ny rad",deltext:" ",deltitle:"Slett valgte rad(er)",searchtext:" ",searchtitle:"S�k",refreshtext:"",refreshtitle:"Oppdater tabell",alertcap:"Advarsel",alerttext:"Velg rad",viewtext:" ",viewtitle:"�pne valgt rad"};a.jgrid.col={caption:"Vis/skjul kolonner",bSubmit:"Utf�r",bCancel:"Avbryt"};a.jgrid.errors={errcap:"Feil",nourl:"Ingen url er satt",norecords:"Ingen poster � behandle",model:"colNames og colModel har forskjellig lengde!"};a.jgrid.formatter={integer:{thousandsSeparator:" ",defaultValue:0},number:{decimalSeparator:",",thousandsSeparator:" ",decimalPlaces:2,defaulValue:0},currency:{decimalSeparator:",",thousandsSeparator:" ",decimalPlaces:2,prefix:"",suffix:"",defaulValue:0},date:{dayNames:["s�.","ma.","ti.","on.","to.","fr.","l�.","S�ndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","L�rdag"],monthNames:["jan.","feb.","mars","april","mai","juni","juli","aug.","sep.","okt.","nov.","des.","januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],AmPm:["","","",""],S:function(b){return"."},srcformat:"Y-m-d H:i:s",newformat:"Y-m-d H:i:s",parseRe : /[#%\\\/:_;.,\t\s-]/,masks:{ISO8601Long:"Y-m-d H:i:s",ISO8601Short:"Y-m-d",ShortDate:"j.n.Y",LongDate:"l j. F Y",FullDateTime:"l j. F Y kl. G.i.s",MonthDay:"j. F",ShortTime:"H:i",LongTime:"H:i:s",SortableDateTime:"Y-m-d\\TH:i:s",UniversalSortableDateTime:"Y-m-d H:i:sO",YearMonth:"F Y"},reformatAfterEdit:false},baseLinkUrl:"",showAction:"show",addParam:"",checkbox:{disabled:true}}})(jQuery);
@@ -24,8 +24,10 @@ $.extend($.jgrid,{
24
24
  caption: "Wyszukiwanie...",
25
25
  Find: "Szukaj",
26
26
  Reset: "Czyść",
27
- odata: [{ oper:'eq', text:"dokładnie"},{ oper:'ne', text:"różne od"},{ oper:'lt', text:"mniejsze od"},{ oper:'le', text:"mniejsze lub równe"},{ oper:'gt', text:"większe od"},{ oper:'ge', text:"większe lub równe"},{ oper:'bw', text:"zaczyna się od"},{ oper:'bn', text:"nie zaczyna się od"},{ oper:'in', text:"jest w"},{ oper:'ni', text:"nie jest w"},{ oper:'ew', text:"kończy się na"},{ oper:'en', text:"nie kończy się na"},{ oper:'cn', text:"zawiera"},{ oper:'nc', text:"nie zawiera"}],
28
- groupOps: [ { op: "AND", text: "oraz" }, { op: "OR", text: "lub" } ]
27
+ odata: [{ oper:'eq', text:"dokładnie"},{ oper:'ne', text:"różne od"},{ oper:'lt', text:"mniejsze od"},{ oper:'le', text:"mniejsze lub równe"},{ oper:'gt', text:"większe od"},{ oper:'ge', text:"większe lub równe"},{ oper:'bw', text:"zaczyna się od"},{ oper:'bn', text:"nie zaczyna się od"},{ oper:'in', text:"jest w"},{ oper:'ni', text:"nie jest w"},{ oper:'ew', text:"kończy się na"},{ oper:'en', text:"nie kończy się na"},{ oper:'cn', text:"zawiera"},{ oper:'nc', text:"nie zawiera"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],
28
+ groupOps: [ { op: "AND", text: "oraz" }, { op: "OR", text: "lub" } ],
29
+ operandTitle : "Click to select search operation.",
30
+ resetTitle : "Reset Search Value"
29
31
  },
30
32
  edit : {
31
33
  addCaption: "Dodaj rekord",
@@ -106,7 +108,7 @@ $.extend($.jgrid,{
106
108
  S: function (j) {return '';},
107
109
  srcformat: 'Y-m-d',
108
110
  newformat: 'd.m.Y',
109
- parseRe : /[Tt\\\/:_;.,\t\s-]/,
111
+ parseRe : /[#%\\\/:_;.,\t\s-]/,
110
112
  masks : {
111
113
  ISO8601Long: "Y-m-d H:i:s",
112
114
  ISO8601Short: "Y-m-d",
@@ -28,7 +28,9 @@ $.extend($.jgrid,{
28
28
  Find: "Procurar",
29
29
  Reset: "Resetar",
30
30
  odata: [{ oper:'eq', text:"igual"},{ oper:'ne', text:"diferente"},{ oper:'lt', text:"menor"},{ oper:'le', text:"menor ou igual"},{ oper:'gt', text:"maior"},{ oper:'ge', text:"maior ou igual"},{ oper:'bw', text:"inicia com"},{ oper:'bn', text:"não inicia com"},{ oper:'in', text:"está em"},{ oper:'ni', text:"não está em"},{ oper:'ew', text:"termina com"},{ oper:'en', text:"não termina com"},{ oper:'cn', text:"contém"},{ oper:'nc', text:"não contém"},{ oper:'nu', text:"nulo"},{ oper:'nn', text:"não nulo"}],
31
- groupOps: [ { op: "AND", text: "todos" }, { op: "OR", text: "qualquer um" } ]
31
+ groupOps: [ { op: "AND", text: "todos" },{ op: "OR", text: "qualquer um" } ],
32
+ operandTitle : "Click to select search operation.",
33
+ resetTitle : "Reset Search Value"
32
34
  },
33
35
  edit : {
34
36
  addCaption: "Incluir",
@@ -109,7 +111,7 @@ $.extend($.jgrid,{
109
111
  S: function (j) {return j < 11 || j > 13 ? ['º', 'º', 'º', 'º'][Math.min((j - 1) % 10, 3)] : 'º'},
110
112
  srcformat: 'Y-m-d',
111
113
  newformat: 'd/m/Y',
112
- parseRe : /[Tt\\\/:_;.,\t\s-]/,
114
+ parseRe : /[#%\\\/:_;.,\t\s-]/,
113
115
  masks : {
114
116
  ISO8601Long:"Y-m-d H:i:s",
115
117
  ISO8601Short:"Y-m-d",
@@ -12,14 +12,16 @@ $.extend($.jgrid,{
12
12
  recordtext: "View {0} - {1} of {2}",
13
13
  emptyrecords: "No records to view",
14
14
  loadtext: "A carregar...",
15
- pgtext : "Page {0} of {1}"
15
+ pgtext : "Página {0} de {1}"
16
16
  },
17
17
  search : {
18
18
  caption: "Busca...",
19
19
  Find: "Procurar",
20
20
  Reset: "Limpar",
21
- odata: [{ oper:'eq', text:'equal'},{ oper:'ne', text:'not equal'},{ oper:'lt', text:'less'},{ oper:'le', text:'less or equal'},{ oper:'gt', text:'greater'},{ oper:'ge', text:'greater or equal'},{ oper:'bw', text:'begins with'},{ oper:'bn', text:'does not begin with'},{ oper:'in', text:'is in'},{ oper:'ni', text:'is not in'},{ oper:'ew', text:'ends with'},{ oper:'en', text:'does not end with'},{ oper:'cn', text:'contains'},{ oper:'nc', text:'does not contain'}],
22
- groupOps: [ { op: "AND", text: "all" }, { op: "OR", text: "any" } ]
21
+ odata: [{ oper:'eq', text:'equal'},{ oper:'ne', text:'not equal'},{ oper:'lt', text:'less'},{ oper:'le', text:'less or equal'},{ oper:'gt', text:'greater'},{ oper:'ge', text:'greater or equal'},{ oper:'bw', text:'begins with'},{ oper:'bn', text:'does not begin with'},{ oper:'in', text:'is in'},{ oper:'ni', text:'is not in'},{ oper:'ew', text:'ends with'},{ oper:'en', text:'does not end with'},{ oper:'cn', text:'contains'},{ oper:'nc', text:'does not contain'},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],
22
+ groupOps: [ { op: "AND", text: "all" }, { op: "OR", text: "any" } ],
23
+ operandTitle : "Click to select search operation.",
24
+ resetTitle : "Reset Search Value"
23
25
  },
24
26
  edit : {
25
27
  addCaption: "Adicionar Registo",
@@ -99,7 +101,7 @@ $.extend($.jgrid,{
99
101
  S: function (j) {return j < 11 || j > 13 ? ['�', '�', '�', '�'][Math.min((j - 1) % 10, 3)] : '�'},
100
102
  srcformat: 'Y-m-d',
101
103
  newformat: 'd/m/Y',
102
- parseRe : /[Tt\\\/:_;.,\t\s-]/,
104
+ parseRe : /[#%\\\/:_;.,\t\s-]/,
103
105
  masks : {
104
106
  ISO8601Long:"Y-m-d H:i:s",
105
107
  ISO8601Short:"Y-m-d",
@@ -19,8 +19,10 @@ $.extend($.jgrid,{
19
19
  caption: "Caută...",
20
20
  Find: "Caută",
21
21
  Reset: "Resetare",
22
- odata: [{ oper:'eq', text:"egal"},{ oper:'ne', text:"diferit"},{ oper:'lt', text:"mai mic"},{ oper:'le', text:"mai mic sau egal"},{ oper:'gt', text:"mai mare"},{ oper:'ge', text:"mai mare sau egal"},{ oper:'bw', text:"începe cu"},{ oper:'bn', text:"nu începe cu"},{ oper:'in', text:"se găsește în"},{ oper:'ni', text:"nu se găsește în"},{ oper:'ew', text:"se termină cu"},{ oper:'en', text:"nu se termină cu"},{ oper:'cn', text:"conține"},{ oper:'nc', text:""}],
23
- groupOps: [ { op: "AND", text: "toate" }, { op: "OR", text: "oricare" } ]
22
+ odata: [{ oper:'eq', text:"egal"},{ oper:'ne', text:"diferit"},{ oper:'lt', text:"mai mic"},{ oper:'le', text:"mai mic sau egal"},{ oper:'gt', text:"mai mare"},{ oper:'ge', text:"mai mare sau egal"},{ oper:'bw', text:"începe cu"},{ oper:'bn', text:"nu începe cu"},{ oper:'in', text:"se găsește în"},{ oper:'ni', text:"nu se găsește în"},{ oper:'ew', text:"se termină cu"},{ oper:'en', text:"nu se termină cu"},{ oper:'cn', text:"conține"},{ oper:'nc', text:""},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],
23
+ groupOps: [ { op: "AND", text: "toate" }, { op: "OR", text: "oricare" } ],
24
+ operandTitle : "Click to select search operation.",
25
+ resetTitle : "Reset Search Value"
24
26
  },
25
27
  edit : {
26
28
  addCaption: "Adăugare înregistrare",
@@ -113,7 +115,7 @@ $.extend($.jgrid,{
113
115
  S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
114
116
  srcformat: 'Y-m-d',
115
117
  newformat: 'd/m/Y',
116
- parseRe : /[Tt\\\/:_;.,\t\s-]/,
118
+ parseRe : /[#%\\\/:_;.,\t\s-]/,
117
119
  masks : {
118
120
  ISO8601Long:"Y-m-d H:i:s",
119
121
  ISO8601Short:"Y-m-d",
@@ -11,78 +11,80 @@ $.jgrid = $.jgrid || {};
11
11
  $.extend($.jgrid,{
12
12
  defaults : {
13
13
  recordtext: "Просмотр {0} - {1} из {2}",
14
- emptyrecords: "Нет записей для просмотра",
14
+ emptyrecords: "Нет записей для просмотра",
15
15
  loadtext: "Загрузка...",
16
16
  pgtext : "Стр. {0} из {1}"
17
17
  },
18
18
  search : {
19
- caption: "Поиск...",
20
- Find: "Найти",
21
- Reset: "Сброс",
22
- odata: [{ oper:'eq', text:"равно"},{ oper:'ne', text:"не равно"},{ oper:'lt', text:"меньше"},{ oper:'le', text:"меньше или равно"},{ oper:'gt', text:"больше"},{ oper:'ge', text:"больше или равно"},{ oper:'bw', text:"начинается с"},{ oper:'bn', text:"не начинается с"},{ oper:'in', text:"находится в"},{ oper:'ni', text:"не находится в"},{ oper:'ew', text:"заканчивается на"},{ oper:'en', text:"не заканчивается на"},{ oper:'cn', text:"содержит"},{ oper:'nc', text:"не содержит"}],
23
- groupOps: [ { op: "AND", text: "все" }, { op: "OR", text: "любой" } ]
19
+ caption: "Поиск...",
20
+ Find: "Найти",
21
+ Reset: "Сброс",
22
+ odata: [{ oper:'eq', text:"равно"},{ oper:'ne', text:"не равно"},{ oper:'lt', text:"меньше"},{ oper:'le', text:"меньше или равно"},{ oper:'gt', text:"больше"},{ oper:'ge', text:"больше или равно"},{ oper:'bw', text:"начинается с"},{ oper:'bn', text:"не начинается с"},{ oper:'in', text:"находится в"},{ oper:'ni', text:"не находится в"},{ oper:'ew', text:"заканчивается на"},{ oper:'en', text:"не заканчивается на"},{ oper:'cn', text:"содержит"},{ oper:'nc', text:"не содержит"},{ oper:'nu', text:"равно NULL"},{ oper:'nn', text:"не равно NULL"}],
23
+ groupOps: [ { op: "AND", text: "все" }, { op: "OR", text: "любой" }],
24
+ operandTitle : "Click to select search operation.",
25
+ resetTitle : "Reset Search Value"
24
26
  },
25
27
  edit : {
26
- addCaption: "Добавить запись",
27
- editCaption: "Редактировать запись",
28
- bSubmit: "Сохранить",
29
- bCancel: "Отмена",
28
+ addCaption: "Добавить запись",
29
+ editCaption: "Редактировать запись",
30
+ bSubmit: "Сохранить",
31
+ bCancel: "Отмена",
30
32
  bClose: "Закрыть",
31
33
  saveData: "Данные были измененны! Сохранить изменения?",
32
34
  bYes : "Да",
33
35
  bNo : "Нет",
34
36
  bExit : "Отмена",
35
- msg: {
36
- required:"Поле является обязательным",
37
- number:"Пожалуйста, введите правильное число",
38
- minValue:"значение должно быть больше либо равно",
39
- maxValue:"значение должно быть меньше либо равно",
40
- email: "некорректное значение e-mail",
41
- integer: "Пожалуйста, введите целое число",
42
- date: "Пожалуйста, введите правильную дату",
43
- url: "неверная ссылка. Необходимо ввести префикс ('http://' или 'https://')",
44
- nodefined : " не определено!",
45
- novalue : " возвращаемое значение обязательно!",
46
- customarray : "Пользовательская функция должна возвращать массив!",
47
- customfcheck : "Пользовательская функция должна присутствовать в случаи пользовательской проверки!"
37
+ msg: {
38
+ required:"Поле является обязательным",
39
+ number:"Пожалуйста, введите правильное число",
40
+ minValue:"значение должно быть больше либо равно",
41
+ maxValue:"значение должно быть меньше либо равно",
42
+ email: "некорректное значение e-mail",
43
+ integer: "Пожалуйста, введите целое число",
44
+ date: "Пожалуйста, введите правильную дату",
45
+ url: "неверная ссылка. Необходимо ввести префикс ('http://' или 'https://')",
46
+ nodefined : " не определено!",
47
+ novalue : " возвращаемое значение обязательно!",
48
+ customarray : "Пользовательская функция должна возвращать массив!",
49
+ customfcheck : "Пользовательская функция должна присутствовать в случаи пользовательской проверки!"
48
50
  }
49
51
  },
50
52
  view : {
51
- caption: "Просмотр записи",
52
- bClose: "Закрыть"
53
+ caption: "Просмотр записи",
54
+ bClose: "Закрыть"
53
55
  },
54
56
  del : {
55
- caption: "Удалить",
56
- msg: "Удалить выбранную запись(и)?",
57
- bSubmit: "Удалить",
58
- bCancel: "Отмена"
57
+ caption: "Удалить",
58
+ msg: "Удалить выбранную запись(и)?",
59
+ bSubmit: "Удалить",
60
+ bCancel: "Отмена"
59
61
  },
60
62
  nav : {
61
- edittext: " ",
62
- edittitle: "Редактировать выбранную запись",
63
- addtext:" ",
64
- addtitle: "Добавить новую запись",
65
- deltext: " ",
66
- deltitle: "Удалить выбранную запись",
67
- searchtext: " ",
68
- searchtitle: "Найти записи",
69
- refreshtext: "",
70
- refreshtitle: "Обновить таблицу",
71
- alertcap: "Внимание",
72
- alerttext: "Пожалуйста, выберите запись",
73
- viewtext: "",
74
- viewtitle: "Просмотреть выбранную запись"
63
+ edittext: " ",
64
+ edittitle: "Редактировать выбранную запись",
65
+ addtext:" ",
66
+ addtitle: "Добавить новую запись",
67
+ deltext: " ",
68
+ deltitle: "Удалить выбранную запись",
69
+ searchtext: " ",
70
+ searchtitle: "Найти записи",
71
+ refreshtext: "",
72
+ refreshtitle: "Обновить таблицу",
73
+ alertcap: "Внимание",
74
+ alerttext: "Пожалуйста, выберите запись",
75
+ viewtext: "",
76
+ viewtitle: "Просмотреть выбранную запись"
75
77
  },
76
78
  col : {
77
- caption: "Показать/скрыть столбцы",
78
- bSubmit: "Сохранить",
79
- bCancel: "Отмена"
79
+ caption: "Показать/скрыть столбцы",
80
+ bSubmit: "Сохранить",
81
+ bCancel: "Отмена"
80
82
  },
81
83
  errors : {
82
84
  errcap : "Ошибка",
83
85
  nourl : "URL не установлен",
84
86
  norecords: "Нет записей для обработки",
85
- model : "Число полей не соответствует числу столбцов таблицы!"
87
+ model : "Число полей не соответствует числу столбцов таблицы!"
86
88
  },
87
89
  formatter : {
88
90
  integer : {thousandsSeparator: " ", defaultValue: '0'},
@@ -98,29 +100,29 @@ $.extend($.jgrid,{
98
100
  "Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"
99
101
  ],
100
102
  AmPm : ["am","pm","AM","PM"],
101
- S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
103
+ S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th';},
102
104
  srcformat: 'Y-m-d',
103
105
  newformat: 'd.m.Y',
104
- parseRe : /[Tt\\\/:_;.,\t\s-]/,
106
+ parseRe : /[#%\\\/:_;.,\t\s-]/,
105
107
  masks : {
106
- ISO8601Long:"Y-m-d H:i:s",
107
- ISO8601Short:"Y-m-d",
108
- ShortDate: "n.j.Y",
109
- LongDate: "l, F d, Y",
110
- FullDateTime: "l, F d, Y G:i:s",
111
- MonthDay: "F d",
112
- ShortTime: "G:i",
113
- LongTime: "G:i:s",
114
- SortableDateTime: "Y-m-d\\TH:i:s",
115
- UniversalSortableDateTime: "Y-m-d H:i:sO",
116
- YearMonth: "F, Y"
117
- },
118
- reformatAfterEdit : false
108
+ ISO8601Long:"Y-m-d H:i:s",
109
+ ISO8601Short:"Y-m-d",
110
+ ShortDate: "n.j.Y",
111
+ LongDate: "l, F d, Y",
112
+ FullDateTime: "l, F d, Y G:i:s",
113
+ MonthDay: "F d",
114
+ ShortTime: "G:i",
115
+ LongTime: "G:i:s",
116
+ SortableDateTime: "Y-m-d\\TH:i:s",
117
+ UniversalSortableDateTime: "Y-m-d H:i:sO",
118
+ YearMonth: "F, Y"
119
+ },
120
+ reformatAfterEdit : false
119
121
  },
120
122
  baseLinkUrl: '',
121
123
  showAction: '',
122
- target: '',
123
- checkbox : {disabled:true},
124
+ target: '',
125
+ checkbox : {disabled:true},
124
126
  idName : 'id'
125
127
  }
126
128
  });
@@ -19,8 +19,10 @@ $.extend($.jgrid,{
19
19
  caption: "Vyhľadávam...",
20
20
  Find: "Hľadať",
21
21
  Reset: "Reset",
22
- odata: [{ oper:'eq', text:"rovná sa"},{ oper:'ne', text:"nerovná sa"},{ oper:'lt', text:"menšie"},{ oper:'le', text:"menšie alebo rovnajúce sa"},{ oper:'gt', text:"väčšie"},{ oper:'ge', text:"väčšie alebo rovnajúce sa"},{ oper:'bw', text:"začína s"},{ oper:'bn', text:"nezačína s"},{ oper:'in', text:"je v"},{ oper:'ni', text:"nie je v"},{ oper:'ew', text:"končí s"},{ oper:'en', text:"nekončí s"},{ oper:'cn', text:"obahuje"},{ oper:'nc', text:"neobsahuje"}],
23
- groupOps: [ { op: "AND", text: "všetkých" }, { op: "OR", text: "niektorého z" } ]
22
+ odata: [{ oper:'eq', text:"rovná sa"},{ oper:'ne', text:"nerovná sa"},{ oper:'lt', text:"menšie"},{ oper:'le', text:"menšie alebo rovnajúce sa"},{ oper:'gt', text:"väčšie"},{ oper:'ge', text:"väčšie alebo rovnajúce sa"},{ oper:'bw', text:"začína s"},{ oper:'bn', text:"nezačína s"},{ oper:'in', text:"je v"},{ oper:'ni', text:"nie je v"},{ oper:'ew', text:"končí s"},{ oper:'en', text:"nekončí s"},{ oper:'cn', text:"obahuje"},{ oper:'nc', text:"neobsahuje"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],
23
+ groupOps: [ { op: "AND", text: "všetkých" }, { op: "OR", text: "niektorého z" } ],
24
+ operandTitle : "Click to select search operation.",
25
+ resetTitle : "Reset Search Value"
24
26
  },
25
27
  edit : {
26
28
  addCaption: "Pridať záznam",
@@ -101,7 +103,7 @@ $.extend($.jgrid,{
101
103
  S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
102
104
  srcformat: 'Y-m-d',
103
105
  newformat: 'd/m/Y',
104
- parseRe : /[Tt\\\/:_;.,\t\s-]/,
106
+ parseRe : /[#%\\\/:_;.,\t\s-]/,
105
107
  masks : {
106
108
  ISO8601Long:"Y-m-d H:i:s",
107
109
  ISO8601Short:"Y-m-d",
@@ -1,128 +1,130 @@
1
- ;(function($){
2
- /**
3
- * jqGrid Serbian latin Translation
4
- * Bild Studio info@bild-studio.net
5
- * http://www.bild-studio.com
6
- * Dual licensed under the MIT and GPL licenses:
7
- * http://www.opensource.org/licenses/mit-license.php
8
- * http://www.gnu.org/licenses/gpl.html
9
- **/
10
- $.jgrid = $.jgrid || {};
11
- $.extend($.jgrid,{
12
- defaults : {
13
- recordtext: "Pregled {0} - {1} od {2}",
14
- emptyrecords: "Ne postoji nijedan zapis",
15
- loadtext: "Učitavanje…",
16
- pgtext : "Strana {0} od {1}"
17
- },
18
- search : {
19
- caption: "Traženje...",
20
- Find: "Traži",
21
- Reset: "Resetuj",
22
- odata: [{ oper:'eq', text:"jednako"},{ oper:'ne', text:"nije jednako"},{ oper:'lt', text:"manje"},{ oper:'le', text:"manje ili jednako"},{ oper:'gt', text:"veće"},{ oper:'ge', text:"veće ili jednako"},{ oper:'bw', text:"počinje sa"},{ oper:'bn', text:"ne počinje sa"},{ oper:'in', text:"je u"},{ oper:'ni', text:"nije u"},{ oper:'ew', text:"završava sa"},{ oper:'en', text:"ne završava sa"},{ oper:'cn', text:"sadrži"},{ oper:'nc', text:"ne sadrži"}],
23
- groupOps: [ { op: "AND", text: "sva" }, { op: "OR", text: "bilo koje" } ]
24
- },
25
- edit : {
26
- addCaption: "Dodaj zapis",
27
- editCaption: "Izmeni zapis",
28
- bSubmit: "Pošalji",
29
- bCancel: "Odustani",
30
- bClose: "Zatvori",
31
- saveData: "Podatak je izmenjen! Sačuvaj izmene?",
32
- bYes : "Da",
33
- bNo : "Ne",
34
- bExit : "Odustani",
35
- msg: {
36
- required: "Polje je obavezno",
37
- number: "Unesite ispravan broj",
38
- minValue: "vrednost mora biti veća od ili jednaka sa ",
39
- maxValue: "vrednost mora biti manja ili jednaka sa",
40
- email: "nije ispravna email adresa, nije valjda da ne umeš ukucati mail!?",
41
- integer: "Unesi celobrojnu vrednost ",
42
- date: "Unesite ispravan datum",
43
- url: "nije ispravan URL. Potreban je prefiks ('http://' or 'https://')",
44
- nodefined : " nije definisan!",
45
- novalue : " zahtevana je povratna vrednost!",
46
- customarray : "Prilagođena funkcija treba da vrati niz!",
47
- customfcheck : "Prilagođena funkcija treba da bude prisutana u slučaju prilagođene provere!"
48
-
49
- }
50
- },
51
- view : {
52
- caption: "Pogledaj zapis",
53
- bClose: "Zatvori"
54
- },
55
- del : {
56
- caption: "Izbrisi",
57
- msg: "Izbrisi izabran(e) zapise(e)?",
58
- bSubmit: "Izbriši",
59
- bCancel: "Odbaci"
60
- },
61
- nav : {
62
- edittext: "",
63
- edittitle: "Izmeni izabrani red",
64
- addtext:"",
65
- addtitle: "Dodaj novi red",
66
- deltext: "",
67
- deltitle: "Izbriši izabran red",
68
- searchtext: "",
69
- searchtitle: "Nađi zapise",
70
- refreshtext: "",
71
- refreshtitle: "Ponovo učitaj podatke",
72
- alertcap: "Upozorenje",
73
- alerttext: "Izaberite red",
74
- viewtext: "",
75
- viewtitle: "Pogledaj izabrani red"
76
- },
77
- col : {
78
- caption: "Izaberi kolone",
79
- bSubmit: "OK",
80
- bCancel: "Odbaci"
81
- },
82
- errors : {
83
- errcap : "Greška",
84
- nourl : "Nije postavljen URL",
85
- norecords: "Nema zapisa za obradu",
86
- model : "Dužina modela colNames <> colModel!"
87
- },
88
- formatter : {
89
- integer : {thousandsSeparator: " ", defaultValue: '0'},
90
- number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0.00'},
91
- currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0.00'},
92
- date : {
93
- dayNames: [
94
- "Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub",
95
- "Nedelja", "Ponedeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"
96
- ],
97
- monthNames: [
98
- "Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec",
99
- "Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"
100
- ],
101
- AmPm : ["am","pm","AM","PM"],
102
- S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
103
- srcformat: 'Y-m-d',
104
- newformat: 'd/m/Y',
105
- parseRe : /[Tt\\\/:_;.,\t\s-]/,
106
- masks : {
107
- ISO8601Long:"Y-m-d H:i:s",
108
- ISO8601Short:"Y-m-d",
109
- ShortDate: "n/j/Y",
110
- LongDate: "l, F d, Y",
111
- FullDateTime: "l, F d, Y g:i:s A",
112
- MonthDay: "F d",
113
- ShortTime: "g:i A",
114
- LongTime: "g:i:s A",
115
- SortableDateTime: "Y-m-d\\TH:i:s",
116
- UniversalSortableDateTime: "Y-m-d H:i:sO",
117
- YearMonth: "F, Y"
118
- },
119
- reformatAfterEdit : false
120
- },
121
- baseLinkUrl: '',
122
- showAction: '',
123
- target: '',
124
- checkbox : {disabled:true},
125
- idName : 'id'
126
- }
127
- });
128
- })(jQuery);
1
+ ;(function($){
2
+ /**
3
+ * jqGrid Serbian latin Translation
4
+ * Bild Studio info@bild-studio.net
5
+ * http://www.bild-studio.com
6
+ * Dual licensed under the MIT and GPL licenses:
7
+ * http://www.opensource.org/licenses/mit-license.php
8
+ * http://www.gnu.org/licenses/gpl.html
9
+ **/
10
+ $.jgrid = $.jgrid || {};
11
+ $.extend($.jgrid,{
12
+ defaults : {
13
+ recordtext: "Pregled {0} - {1} od {2}",
14
+ emptyrecords: "Ne postoji nijedan zapis",
15
+ loadtext: "Učitavanje…",
16
+ pgtext : "Strana {0} od {1}"
17
+ },
18
+ search : {
19
+ caption: "Traženje...",
20
+ Find: "Traži",
21
+ Reset: "Resetuj",
22
+ odata: [{ oper:'eq', text:"jednako"},{ oper:'ne', text:"nije jednako"},{ oper:'lt', text:"manje"},{ oper:'le', text:"manje ili jednako"},{ oper:'gt', text:"veće"},{ oper:'ge', text:"veće ili jednako"},{ oper:'bw', text:"počinje sa"},{ oper:'bn', text:"ne počinje sa"},{ oper:'in', text:"je u"},{ oper:'ni', text:"nije u"},{ oper:'ew', text:"završava sa"},{ oper:'en', text:"ne završava sa"},{ oper:'cn', text:"sadrži"},{ oper:'nc', text:"ne sadrži"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],
23
+ groupOps: [ { op: "AND", text: "sva" }, { op: "OR", text: "bilo koje" } ],
24
+ operandTitle : "Click to select search operation.",
25
+ resetTitle : "Reset Search Value"
26
+ },
27
+ edit : {
28
+ addCaption: "Dodaj zapis",
29
+ editCaption: "Izmeni zapis",
30
+ bSubmit: "Pošalji",
31
+ bCancel: "Odustani",
32
+ bClose: "Zatvori",
33
+ saveData: "Podatak je izmenjen! Sačuvaj izmene?",
34
+ bYes : "Da",
35
+ bNo : "Ne",
36
+ bExit : "Odustani",
37
+ msg: {
38
+ required: "Polje je obavezno",
39
+ number: "Unesite ispravan broj",
40
+ minValue: "vrednost mora biti veća od ili jednaka sa ",
41
+ maxValue: "vrednost mora biti manja ili jednaka sa",
42
+ email: "nije ispravna email adresa, nije valjda da ne umeš ukucati mail!?",
43
+ integer: "Unesi celobrojnu vrednost ",
44
+ date: "Unesite ispravan datum",
45
+ url: "nije ispravan URL. Potreban je prefiks ('http://' or 'https://')",
46
+ nodefined : " nije definisan!",
47
+ novalue : " zahtevana je povratna vrednost!",
48
+ customarray : "Prilagođena funkcija treba da vrati niz!",
49
+ customfcheck : "Prilagođena funkcija treba da bude prisutana u slučaju prilagođene provere!"
50
+
51
+ }
52
+ },
53
+ view : {
54
+ caption: "Pogledaj zapis",
55
+ bClose: "Zatvori"
56
+ },
57
+ del : {
58
+ caption: "Izbrisi",
59
+ msg: "Izbrisi izabran(e) zapise(e)?",
60
+ bSubmit: "Izbriši",
61
+ bCancel: "Odbaci"
62
+ },
63
+ nav : {
64
+ edittext: "",
65
+ edittitle: "Izmeni izabrani red",
66
+ addtext:"",
67
+ addtitle: "Dodaj novi red",
68
+ deltext: "",
69
+ deltitle: "Izbriši izabran red",
70
+ searchtext: "",
71
+ searchtitle: "Nađi zapise",
72
+ refreshtext: "",
73
+ refreshtitle: "Ponovo učitaj podatke",
74
+ alertcap: "Upozorenje",
75
+ alerttext: "Izaberite red",
76
+ viewtext: "",
77
+ viewtitle: "Pogledaj izabrani red"
78
+ },
79
+ col : {
80
+ caption: "Izaberi kolone",
81
+ bSubmit: "OK",
82
+ bCancel: "Odbaci"
83
+ },
84
+ errors : {
85
+ errcap : "Greška",
86
+ nourl : "Nije postavljen URL",
87
+ norecords: "Nema zapisa za obradu",
88
+ model : "Dužina modela colNames <> colModel!"
89
+ },
90
+ formatter : {
91
+ integer : {thousandsSeparator: " ", defaultValue: '0'},
92
+ number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0.00'},
93
+ currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0.00'},
94
+ date : {
95
+ dayNames: [
96
+ "Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub",
97
+ "Nedelja", "Ponedeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota"
98
+ ],
99
+ monthNames: [
100
+ "Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec",
101
+ "Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"
102
+ ],
103
+ AmPm : ["am","pm","AM","PM"],
104
+ S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
105
+ srcformat: 'Y-m-d',
106
+ newformat: 'd/m/Y',
107
+ parseRe : /[#%\\\/:_;.,\t\s-]/,
108
+ masks : {
109
+ ISO8601Long:"Y-m-d H:i:s",
110
+ ISO8601Short:"Y-m-d",
111
+ ShortDate: "n/j/Y",
112
+ LongDate: "l, F d, Y",
113
+ FullDateTime: "l, F d, Y g:i:s A",
114
+ MonthDay: "F d",
115
+ ShortTime: "g:i A",
116
+ LongTime: "g:i:s A",
117
+ SortableDateTime: "Y-m-d\\TH:i:s",
118
+ UniversalSortableDateTime: "Y-m-d H:i:sO",
119
+ YearMonth: "F, Y"
120
+ },
121
+ reformatAfterEdit : false
122
+ },
123
+ baseLinkUrl: '',
124
+ showAction: '',
125
+ target: '',
126
+ checkbox : {disabled:true},
127
+ idName : 'id'
128
+ }
129
+ });
130
+ })(jQuery);