@genesislcap/grid-pro 14.200.1-alpha-e974201.0 → 14.202.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 +117 -111
- package/dist/custom-elements.json +2750 -840
- package/dist/dts/cell-renderers/boolean.renderer.d.ts.map +1 -1
- package/dist/dts/datasource/base.datasource.d.ts +22 -6
- package/dist/dts/datasource/base.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/base.types.d.ts +22 -0
- package/dist/dts/datasource/base.types.d.ts.map +1 -0
- package/dist/dts/datasource/server-side.datasource.d.ts +27 -83
- package/dist/dts/datasource/server-side.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.grid-definitions.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.resource-base.d.ts +55 -0
- package/dist/dts/datasource/server-side.resource-base.d.ts.map +1 -0
- package/dist/dts/datasource/server-side.resource-dataserver.d.ts +20 -0
- package/dist/dts/datasource/server-side.resource-dataserver.d.ts.map +1 -0
- package/dist/dts/datasource/server-side.resource-reqrep.d.ts +17 -0
- package/dist/dts/datasource/server-side.resource-reqrep.d.ts.map +1 -0
- package/dist/dts/external/index.d.ts +0 -1
- package/dist/dts/external/index.d.ts.map +1 -1
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +13 -13
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/dts/grid-pro.d.ts +33 -33
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/dts/grid-pro.template.d.ts.map +1 -1
- package/dist/esm/cell-renderers/boolean.renderer.js +7 -6
- package/dist/esm/datasource/base.datasource.js +79 -10
- package/dist/esm/datasource/base.types.js +1 -0
- package/dist/esm/datasource/client-side.grid-definitions.js +1 -1
- package/dist/esm/datasource/server-side.datasource.js +224 -400
- package/dist/esm/datasource/server-side.grid-definitions.js +42 -7
- package/dist/esm/datasource/server-side.resource-base.js +285 -0
- package/dist/esm/datasource/server-side.resource-dataserver.js +132 -0
- package/dist/esm/datasource/server-side.resource-reqrep.js +131 -0
- package/dist/esm/external/index.js +0 -5
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +65 -69
- package/dist/esm/grid-pro.js +30 -44
- package/dist/esm/grid-pro.template.js +2 -1
- package/dist/grid-pro.api.json +90 -149
- package/dist/grid-pro.d.ts +94 -142
- package/docs/api/grid-pro.gridpro.addeventlistener.md +2 -2
- package/docs/api/grid-pro.gridpro.aggrid.md +11 -0
- package/docs/api/grid-pro.gridpro.applytemplatedefinitions.md +2 -2
- package/docs/api/grid-pro.gridpro.columnapi.md +11 -0
- package/docs/api/grid-pro.gridpro.gridapi.md +1 -1
- package/docs/api/grid-pro.gridpro.md +5 -3
- package/docs/api/grid-pro.gridpro.mergeallcolumndefsandstates.md +2 -2
- package/docs/api/grid-pro.gridpro.themechanged.md +2 -2
- package/docs/api/grid-pro.gridprogenesisdatasource.deinit.md +5 -0
- package/docs/api/{grid-pro.gridprogenesisdatasource.auth.md → grid-pro.gridprogenesisdatasource.destroy.md} +9 -3
- package/docs/api/grid-pro.gridprogenesisdatasource.handleerrors.md +2 -2
- package/docs/api/grid-pro.gridprogenesisdatasource.md +2 -6
- package/docs/api/grid-pro.gridprogenesisdatasource.reset.md +1 -1
- package/docs/api-report.md +30 -73
- package/package.json +16 -16
- package/docs/api/grid-pro.gridprogenesisdatasource.datasource.md +0 -11
- package/docs/api/grid-pro.gridprogenesisdatasource.disablepolling.md +0 -11
- package/docs/api/grid-pro.gridprogenesisdatasource.pollinginterval.md +0 -11
- package/docs/api/grid-pro.gridprogenesisdatasource.request.md +0 -11
|
@@ -303,34 +303,32 @@
|
|
|
303
303
|
"members": [
|
|
304
304
|
{
|
|
305
305
|
"kind": "field",
|
|
306
|
-
"name": "
|
|
306
|
+
"name": "columnApi",
|
|
307
307
|
"type": {
|
|
308
|
-
"text": "
|
|
309
|
-
}
|
|
310
|
-
"default": "[]"
|
|
308
|
+
"text": "ColumnApi"
|
|
309
|
+
}
|
|
311
310
|
},
|
|
312
311
|
{
|
|
313
312
|
"kind": "field",
|
|
314
|
-
"name": "
|
|
313
|
+
"name": "gridApi",
|
|
315
314
|
"type": {
|
|
316
|
-
"text": "
|
|
315
|
+
"text": "GridApi"
|
|
317
316
|
}
|
|
318
317
|
},
|
|
319
318
|
{
|
|
320
319
|
"kind": "field",
|
|
321
|
-
"name": "
|
|
320
|
+
"name": "gridErrorItems",
|
|
322
321
|
"type": {
|
|
323
|
-
"text": "
|
|
322
|
+
"text": "GridProErrorItem<GridProErrorEvent['detail']>[]"
|
|
324
323
|
},
|
|
325
|
-
"
|
|
324
|
+
"default": "[]"
|
|
326
325
|
},
|
|
327
326
|
{
|
|
328
327
|
"kind": "field",
|
|
329
|
-
"name": "
|
|
328
|
+
"name": "statePersistence",
|
|
330
329
|
"type": {
|
|
331
|
-
"text": "
|
|
332
|
-
}
|
|
333
|
-
"readonly": true
|
|
330
|
+
"text": "StatePersistence"
|
|
331
|
+
}
|
|
334
332
|
},
|
|
335
333
|
{
|
|
336
334
|
"kind": "field",
|
|
@@ -512,7 +510,7 @@
|
|
|
512
510
|
"name": "themeChanged",
|
|
513
511
|
"parameters": [
|
|
514
512
|
{
|
|
515
|
-
"name": "
|
|
513
|
+
"name": "oldValue",
|
|
516
514
|
"type": {
|
|
517
515
|
"text": "string"
|
|
518
516
|
}
|
|
@@ -532,6 +530,13 @@
|
|
|
532
530
|
"text": "string"
|
|
533
531
|
}
|
|
534
532
|
},
|
|
533
|
+
{
|
|
534
|
+
"kind": "field",
|
|
535
|
+
"name": "agGrid",
|
|
536
|
+
"type": {
|
|
537
|
+
"text": "Grid"
|
|
538
|
+
}
|
|
539
|
+
},
|
|
535
540
|
{
|
|
536
541
|
"kind": "field",
|
|
537
542
|
"name": "gridSlot",
|
|
@@ -662,9 +667,9 @@
|
|
|
662
667
|
"name": "addEventListener",
|
|
663
668
|
"parameters": [
|
|
664
669
|
{
|
|
665
|
-
"name": "
|
|
670
|
+
"name": "eventType",
|
|
666
671
|
"type": {
|
|
667
|
-
"text": "
|
|
672
|
+
"text": "string"
|
|
668
673
|
}
|
|
669
674
|
},
|
|
670
675
|
{
|
|
@@ -685,7 +690,10 @@
|
|
|
685
690
|
"privacy": "private",
|
|
686
691
|
"parameters": [
|
|
687
692
|
{
|
|
688
|
-
"name": "
|
|
693
|
+
"name": "eventType",
|
|
694
|
+
"type": {
|
|
695
|
+
"text": "string"
|
|
696
|
+
}
|
|
689
697
|
}
|
|
690
698
|
]
|
|
691
699
|
},
|
|
@@ -5774,6 +5782,22 @@
|
|
|
5774
5782
|
"kind": "javascript-module",
|
|
5775
5783
|
"path": "src/datasource/base.datasource.ts",
|
|
5776
5784
|
"declarations": [
|
|
5785
|
+
{
|
|
5786
|
+
"kind": "variable",
|
|
5787
|
+
"name": "criteriaDelimiter",
|
|
5788
|
+
"type": {
|
|
5789
|
+
"text": "string"
|
|
5790
|
+
},
|
|
5791
|
+
"default": "';'"
|
|
5792
|
+
},
|
|
5793
|
+
{
|
|
5794
|
+
"kind": "variable",
|
|
5795
|
+
"name": "criteriaJoin",
|
|
5796
|
+
"type": {
|
|
5797
|
+
"text": "string"
|
|
5798
|
+
},
|
|
5799
|
+
"default": "' && '"
|
|
5800
|
+
},
|
|
5777
5801
|
{
|
|
5778
5802
|
"kind": "class",
|
|
5779
5803
|
"description": "",
|
|
@@ -5786,6 +5810,13 @@
|
|
|
5786
5810
|
"text": "Connect"
|
|
5787
5811
|
}
|
|
5788
5812
|
},
|
|
5813
|
+
{
|
|
5814
|
+
"kind": "field",
|
|
5815
|
+
"name": "datasource",
|
|
5816
|
+
"type": {
|
|
5817
|
+
"text": "Datasource"
|
|
5818
|
+
}
|
|
5819
|
+
},
|
|
5789
5820
|
{
|
|
5790
5821
|
"kind": "field",
|
|
5791
5822
|
"name": "deferredGridOptions",
|
|
@@ -5874,6 +5905,44 @@
|
|
|
5874
5905
|
},
|
|
5875
5906
|
"default": "false"
|
|
5876
5907
|
},
|
|
5908
|
+
{
|
|
5909
|
+
"kind": "field",
|
|
5910
|
+
"name": "viewNumber",
|
|
5911
|
+
"type": {
|
|
5912
|
+
"text": "number"
|
|
5913
|
+
}
|
|
5914
|
+
},
|
|
5915
|
+
{
|
|
5916
|
+
"kind": "field",
|
|
5917
|
+
"name": "pollingInterval",
|
|
5918
|
+
"type": {
|
|
5919
|
+
"text": "number"
|
|
5920
|
+
}
|
|
5921
|
+
},
|
|
5922
|
+
{
|
|
5923
|
+
"kind": "field",
|
|
5924
|
+
"name": "disablePolling",
|
|
5925
|
+
"type": {
|
|
5926
|
+
"text": "boolean"
|
|
5927
|
+
},
|
|
5928
|
+
"default": "false"
|
|
5929
|
+
},
|
|
5930
|
+
{
|
|
5931
|
+
"kind": "field",
|
|
5932
|
+
"name": "request",
|
|
5933
|
+
"type": {
|
|
5934
|
+
"text": "any"
|
|
5935
|
+
}
|
|
5936
|
+
},
|
|
5937
|
+
{
|
|
5938
|
+
"kind": "field",
|
|
5939
|
+
"name": "requestAutoSetup",
|
|
5940
|
+
"type": {
|
|
5941
|
+
"text": "boolean"
|
|
5942
|
+
},
|
|
5943
|
+
"default": "true",
|
|
5944
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up."
|
|
5945
|
+
},
|
|
5877
5946
|
{
|
|
5878
5947
|
"kind": "field",
|
|
5879
5948
|
"name": "rowIdAttr",
|
|
@@ -5897,14 +5966,83 @@
|
|
|
5897
5966
|
"privacy": "protected",
|
|
5898
5967
|
"readonly": true
|
|
5899
5968
|
},
|
|
5969
|
+
{
|
|
5970
|
+
"kind": "field",
|
|
5971
|
+
"name": "criteriaFromFilters",
|
|
5972
|
+
"type": {
|
|
5973
|
+
"text": "Map<string, string>"
|
|
5974
|
+
},
|
|
5975
|
+
"privacy": "protected",
|
|
5976
|
+
"default": "new Map()"
|
|
5977
|
+
},
|
|
5978
|
+
{
|
|
5979
|
+
"kind": "field",
|
|
5980
|
+
"name": "update",
|
|
5981
|
+
"type": {
|
|
5982
|
+
"text": "BehaviorSubject<Map<string, string>>"
|
|
5983
|
+
},
|
|
5984
|
+
"privacy": "protected",
|
|
5985
|
+
"default": "new BehaviorSubject(new Map())"
|
|
5986
|
+
},
|
|
5987
|
+
{
|
|
5988
|
+
"kind": "method",
|
|
5989
|
+
"name": "datasourceOptions",
|
|
5990
|
+
"privacy": "protected",
|
|
5991
|
+
"return": {
|
|
5992
|
+
"type": {
|
|
5993
|
+
"text": "DatasourceOptions"
|
|
5994
|
+
}
|
|
5995
|
+
}
|
|
5996
|
+
},
|
|
5997
|
+
{
|
|
5998
|
+
"kind": "method",
|
|
5999
|
+
"name": "buildCriteria",
|
|
6000
|
+
"privacy": "private",
|
|
6001
|
+
"return": {
|
|
6002
|
+
"type": {
|
|
6003
|
+
"text": "string"
|
|
6004
|
+
}
|
|
6005
|
+
}
|
|
6006
|
+
},
|
|
6007
|
+
{
|
|
6008
|
+
"kind": "method",
|
|
6009
|
+
"name": "setFilter",
|
|
6010
|
+
"privacy": "public",
|
|
6011
|
+
"parameters": [
|
|
6012
|
+
{
|
|
6013
|
+
"name": "fieldName",
|
|
6014
|
+
"type": {
|
|
6015
|
+
"text": "string"
|
|
6016
|
+
}
|
|
6017
|
+
},
|
|
6018
|
+
{
|
|
6019
|
+
"name": "newFilter",
|
|
6020
|
+
"type": {
|
|
6021
|
+
"text": "string"
|
|
6022
|
+
}
|
|
6023
|
+
}
|
|
6024
|
+
]
|
|
6025
|
+
},
|
|
6026
|
+
{
|
|
6027
|
+
"kind": "method",
|
|
6028
|
+
"name": "removeFilter",
|
|
6029
|
+
"privacy": "public",
|
|
6030
|
+
"parameters": [
|
|
6031
|
+
{
|
|
6032
|
+
"name": "fieldName",
|
|
6033
|
+
"type": {
|
|
6034
|
+
"text": "string"
|
|
6035
|
+
}
|
|
6036
|
+
}
|
|
6037
|
+
]
|
|
6038
|
+
},
|
|
5900
6039
|
{
|
|
5901
6040
|
"kind": "field",
|
|
5902
6041
|
"name": "isRequestServer",
|
|
5903
6042
|
"type": {
|
|
5904
6043
|
"text": "boolean"
|
|
5905
6044
|
},
|
|
5906
|
-
"
|
|
5907
|
-
"default": "false"
|
|
6045
|
+
"readonly": true
|
|
5908
6046
|
},
|
|
5909
6047
|
{
|
|
5910
6048
|
"kind": "method",
|
|
@@ -6111,6 +6249,37 @@
|
|
|
6111
6249
|
"default": "false",
|
|
6112
6250
|
"fieldName": "reverse"
|
|
6113
6251
|
},
|
|
6252
|
+
{
|
|
6253
|
+
"name": "view-number",
|
|
6254
|
+
"type": {
|
|
6255
|
+
"text": "number"
|
|
6256
|
+
},
|
|
6257
|
+
"fieldName": "viewNumber"
|
|
6258
|
+
},
|
|
6259
|
+
{
|
|
6260
|
+
"name": "polling-interval",
|
|
6261
|
+
"type": {
|
|
6262
|
+
"text": "number"
|
|
6263
|
+
},
|
|
6264
|
+
"fieldName": "pollingInterval"
|
|
6265
|
+
},
|
|
6266
|
+
{
|
|
6267
|
+
"name": "disable-polling",
|
|
6268
|
+
"type": {
|
|
6269
|
+
"text": "boolean"
|
|
6270
|
+
},
|
|
6271
|
+
"default": "false",
|
|
6272
|
+
"fieldName": "disablePolling"
|
|
6273
|
+
},
|
|
6274
|
+
{
|
|
6275
|
+
"name": "request-auto-setup",
|
|
6276
|
+
"type": {
|
|
6277
|
+
"text": "boolean"
|
|
6278
|
+
},
|
|
6279
|
+
"default": "true",
|
|
6280
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
6281
|
+
"fieldName": "requestAutoSetup"
|
|
6282
|
+
},
|
|
6114
6283
|
{
|
|
6115
6284
|
"name": "row-id",
|
|
6116
6285
|
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
@@ -6355,6 +6524,17 @@
|
|
|
6355
6524
|
"module": "src/datasource/base.datasource.ts"
|
|
6356
6525
|
}
|
|
6357
6526
|
},
|
|
6527
|
+
{
|
|
6528
|
+
"kind": "field",
|
|
6529
|
+
"name": "datasource",
|
|
6530
|
+
"type": {
|
|
6531
|
+
"text": "Datasource"
|
|
6532
|
+
},
|
|
6533
|
+
"inheritedFrom": {
|
|
6534
|
+
"name": "GenesisGridDatasourceElement",
|
|
6535
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6536
|
+
}
|
|
6537
|
+
},
|
|
6358
6538
|
{
|
|
6359
6539
|
"kind": "field",
|
|
6360
6540
|
"name": "deferredGridOptions",
|
|
@@ -6493,8 +6673,10 @@
|
|
|
6493
6673
|
},
|
|
6494
6674
|
{
|
|
6495
6675
|
"kind": "field",
|
|
6496
|
-
"name": "
|
|
6497
|
-
"
|
|
6676
|
+
"name": "viewNumber",
|
|
6677
|
+
"type": {
|
|
6678
|
+
"text": "number"
|
|
6679
|
+
},
|
|
6498
6680
|
"inheritedFrom": {
|
|
6499
6681
|
"name": "GenesisGridDatasourceElement",
|
|
6500
6682
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -6502,12 +6684,10 @@
|
|
|
6502
6684
|
},
|
|
6503
6685
|
{
|
|
6504
6686
|
"kind": "field",
|
|
6505
|
-
"name": "
|
|
6687
|
+
"name": "pollingInterval",
|
|
6506
6688
|
"type": {
|
|
6507
|
-
"text": "
|
|
6689
|
+
"text": "number"
|
|
6508
6690
|
},
|
|
6509
|
-
"privacy": "protected",
|
|
6510
|
-
"readonly": true,
|
|
6511
6691
|
"inheritedFrom": {
|
|
6512
6692
|
"name": "GenesisGridDatasourceElement",
|
|
6513
6693
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -6515,12 +6695,11 @@
|
|
|
6515
6695
|
},
|
|
6516
6696
|
{
|
|
6517
6697
|
"kind": "field",
|
|
6518
|
-
"name": "
|
|
6698
|
+
"name": "disablePolling",
|
|
6519
6699
|
"type": {
|
|
6520
|
-
"text": "
|
|
6700
|
+
"text": "boolean"
|
|
6521
6701
|
},
|
|
6522
|
-
"
|
|
6523
|
-
"readonly": true,
|
|
6702
|
+
"default": "false",
|
|
6524
6703
|
"inheritedFrom": {
|
|
6525
6704
|
"name": "GenesisGridDatasourceElement",
|
|
6526
6705
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -6528,34 +6707,32 @@
|
|
|
6528
6707
|
},
|
|
6529
6708
|
{
|
|
6530
6709
|
"kind": "field",
|
|
6531
|
-
"name": "
|
|
6710
|
+
"name": "request",
|
|
6711
|
+
"type": {
|
|
6712
|
+
"text": "any"
|
|
6713
|
+
},
|
|
6714
|
+
"inheritedFrom": {
|
|
6715
|
+
"name": "GenesisGridDatasourceElement",
|
|
6716
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6717
|
+
}
|
|
6718
|
+
},
|
|
6719
|
+
{
|
|
6720
|
+
"kind": "field",
|
|
6721
|
+
"name": "requestAutoSetup",
|
|
6532
6722
|
"type": {
|
|
6533
6723
|
"text": "boolean"
|
|
6534
6724
|
},
|
|
6535
|
-
"
|
|
6536
|
-
"
|
|
6725
|
+
"default": "true",
|
|
6726
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
6537
6727
|
"inheritedFrom": {
|
|
6538
6728
|
"name": "GenesisGridDatasourceElement",
|
|
6539
6729
|
"module": "src/datasource/base.datasource.ts"
|
|
6540
6730
|
}
|
|
6541
6731
|
},
|
|
6542
6732
|
{
|
|
6543
|
-
"kind": "
|
|
6544
|
-
"name": "
|
|
6545
|
-
"
|
|
6546
|
-
{
|
|
6547
|
-
"name": "prev",
|
|
6548
|
-
"type": {
|
|
6549
|
-
"text": "DatasourceStatus"
|
|
6550
|
-
}
|
|
6551
|
-
},
|
|
6552
|
-
{
|
|
6553
|
-
"name": "next",
|
|
6554
|
-
"type": {
|
|
6555
|
-
"text": "DatasourceStatus"
|
|
6556
|
-
}
|
|
6557
|
-
}
|
|
6558
|
-
],
|
|
6733
|
+
"kind": "field",
|
|
6734
|
+
"name": "rowIdAttr",
|
|
6735
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
6559
6736
|
"inheritedFrom": {
|
|
6560
6737
|
"name": "GenesisGridDatasourceElement",
|
|
6561
6738
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -6563,9 +6740,9 @@
|
|
|
6563
6740
|
},
|
|
6564
6741
|
{
|
|
6565
6742
|
"kind": "field",
|
|
6566
|
-
"name": "
|
|
6743
|
+
"name": "rowId",
|
|
6567
6744
|
"type": {
|
|
6568
|
-
"text": "
|
|
6745
|
+
"text": "string"
|
|
6569
6746
|
},
|
|
6570
6747
|
"privacy": "protected",
|
|
6571
6748
|
"readonly": true,
|
|
@@ -6576,7 +6753,161 @@
|
|
|
6576
6753
|
},
|
|
6577
6754
|
{
|
|
6578
6755
|
"kind": "field",
|
|
6579
|
-
"name": "
|
|
6756
|
+
"name": "defaultRowIdByResourceType",
|
|
6757
|
+
"type": {
|
|
6758
|
+
"text": "string"
|
|
6759
|
+
},
|
|
6760
|
+
"privacy": "protected",
|
|
6761
|
+
"readonly": true,
|
|
6762
|
+
"inheritedFrom": {
|
|
6763
|
+
"name": "GenesisGridDatasourceElement",
|
|
6764
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6765
|
+
}
|
|
6766
|
+
},
|
|
6767
|
+
{
|
|
6768
|
+
"kind": "field",
|
|
6769
|
+
"name": "criteriaFromFilters",
|
|
6770
|
+
"type": {
|
|
6771
|
+
"text": "Map<string, string>"
|
|
6772
|
+
},
|
|
6773
|
+
"privacy": "protected",
|
|
6774
|
+
"default": "new Map()",
|
|
6775
|
+
"inheritedFrom": {
|
|
6776
|
+
"name": "GenesisGridDatasourceElement",
|
|
6777
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6778
|
+
}
|
|
6779
|
+
},
|
|
6780
|
+
{
|
|
6781
|
+
"kind": "field",
|
|
6782
|
+
"name": "update",
|
|
6783
|
+
"type": {
|
|
6784
|
+
"text": "BehaviorSubject<Map<string, string>>"
|
|
6785
|
+
},
|
|
6786
|
+
"privacy": "protected",
|
|
6787
|
+
"default": "new BehaviorSubject(new Map())",
|
|
6788
|
+
"inheritedFrom": {
|
|
6789
|
+
"name": "GenesisGridDatasourceElement",
|
|
6790
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6791
|
+
}
|
|
6792
|
+
},
|
|
6793
|
+
{
|
|
6794
|
+
"kind": "method",
|
|
6795
|
+
"name": "datasourceOptions",
|
|
6796
|
+
"privacy": "protected",
|
|
6797
|
+
"return": {
|
|
6798
|
+
"type": {
|
|
6799
|
+
"text": "DatasourceOptions"
|
|
6800
|
+
}
|
|
6801
|
+
},
|
|
6802
|
+
"inheritedFrom": {
|
|
6803
|
+
"name": "GenesisGridDatasourceElement",
|
|
6804
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6805
|
+
}
|
|
6806
|
+
},
|
|
6807
|
+
{
|
|
6808
|
+
"kind": "method",
|
|
6809
|
+
"name": "buildCriteria",
|
|
6810
|
+
"privacy": "private",
|
|
6811
|
+
"return": {
|
|
6812
|
+
"type": {
|
|
6813
|
+
"text": "string"
|
|
6814
|
+
}
|
|
6815
|
+
},
|
|
6816
|
+
"inheritedFrom": {
|
|
6817
|
+
"name": "GenesisGridDatasourceElement",
|
|
6818
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6819
|
+
}
|
|
6820
|
+
},
|
|
6821
|
+
{
|
|
6822
|
+
"kind": "method",
|
|
6823
|
+
"name": "setFilter",
|
|
6824
|
+
"privacy": "public",
|
|
6825
|
+
"parameters": [
|
|
6826
|
+
{
|
|
6827
|
+
"name": "fieldName",
|
|
6828
|
+
"type": {
|
|
6829
|
+
"text": "string"
|
|
6830
|
+
}
|
|
6831
|
+
},
|
|
6832
|
+
{
|
|
6833
|
+
"name": "newFilter",
|
|
6834
|
+
"type": {
|
|
6835
|
+
"text": "string"
|
|
6836
|
+
}
|
|
6837
|
+
}
|
|
6838
|
+
],
|
|
6839
|
+
"inheritedFrom": {
|
|
6840
|
+
"name": "GenesisGridDatasourceElement",
|
|
6841
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6842
|
+
}
|
|
6843
|
+
},
|
|
6844
|
+
{
|
|
6845
|
+
"kind": "method",
|
|
6846
|
+
"name": "removeFilter",
|
|
6847
|
+
"privacy": "public",
|
|
6848
|
+
"parameters": [
|
|
6849
|
+
{
|
|
6850
|
+
"name": "fieldName",
|
|
6851
|
+
"type": {
|
|
6852
|
+
"text": "string"
|
|
6853
|
+
}
|
|
6854
|
+
}
|
|
6855
|
+
],
|
|
6856
|
+
"inheritedFrom": {
|
|
6857
|
+
"name": "GenesisGridDatasourceElement",
|
|
6858
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6859
|
+
}
|
|
6860
|
+
},
|
|
6861
|
+
{
|
|
6862
|
+
"kind": "field",
|
|
6863
|
+
"name": "isRequestServer",
|
|
6864
|
+
"type": {
|
|
6865
|
+
"text": "boolean"
|
|
6866
|
+
},
|
|
6867
|
+
"readonly": true,
|
|
6868
|
+
"inheritedFrom": {
|
|
6869
|
+
"name": "GenesisGridDatasourceElement",
|
|
6870
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6871
|
+
}
|
|
6872
|
+
},
|
|
6873
|
+
{
|
|
6874
|
+
"kind": "method",
|
|
6875
|
+
"name": "datasourceStatusChanged",
|
|
6876
|
+
"parameters": [
|
|
6877
|
+
{
|
|
6878
|
+
"name": "prev",
|
|
6879
|
+
"type": {
|
|
6880
|
+
"text": "DatasourceStatus"
|
|
6881
|
+
}
|
|
6882
|
+
},
|
|
6883
|
+
{
|
|
6884
|
+
"name": "next",
|
|
6885
|
+
"type": {
|
|
6886
|
+
"text": "DatasourceStatus"
|
|
6887
|
+
}
|
|
6888
|
+
}
|
|
6889
|
+
],
|
|
6890
|
+
"inheritedFrom": {
|
|
6891
|
+
"name": "GenesisGridDatasourceElement",
|
|
6892
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6893
|
+
}
|
|
6894
|
+
},
|
|
6895
|
+
{
|
|
6896
|
+
"kind": "field",
|
|
6897
|
+
"name": "agGrid",
|
|
6898
|
+
"type": {
|
|
6899
|
+
"text": "GridPro | null"
|
|
6900
|
+
},
|
|
6901
|
+
"privacy": "protected",
|
|
6902
|
+
"readonly": true,
|
|
6903
|
+
"inheritedFrom": {
|
|
6904
|
+
"name": "GenesisGridDatasourceElement",
|
|
6905
|
+
"module": "src/datasource/base.datasource.ts"
|
|
6906
|
+
}
|
|
6907
|
+
},
|
|
6908
|
+
{
|
|
6909
|
+
"kind": "field",
|
|
6910
|
+
"name": "_presentation",
|
|
6580
6911
|
"type": {
|
|
6581
6912
|
"text": "ComponentPresentation | null | undefined"
|
|
6582
6913
|
},
|
|
@@ -6793,36 +7124,60 @@
|
|
|
6793
7124
|
}
|
|
6794
7125
|
},
|
|
6795
7126
|
{
|
|
6796
|
-
"name": "
|
|
6797
|
-
"
|
|
6798
|
-
|
|
7127
|
+
"name": "view-number",
|
|
7128
|
+
"type": {
|
|
7129
|
+
"text": "number"
|
|
7130
|
+
},
|
|
7131
|
+
"fieldName": "viewNumber",
|
|
6799
7132
|
"inheritedFrom": {
|
|
6800
7133
|
"name": "GenesisGridDatasourceElement",
|
|
6801
7134
|
"module": "src/datasource/base.datasource.ts"
|
|
6802
7135
|
}
|
|
6803
|
-
}
|
|
6804
|
-
]
|
|
6805
|
-
},
|
|
6806
|
-
{
|
|
6807
|
-
"kind": "class",
|
|
6808
|
-
"description": "",
|
|
6809
|
-
"name": "StreamBaseDatasource",
|
|
6810
|
-
"members": [
|
|
7136
|
+
},
|
|
6811
7137
|
{
|
|
6812
|
-
"
|
|
6813
|
-
"name": "rowId",
|
|
7138
|
+
"name": "polling-interval",
|
|
6814
7139
|
"type": {
|
|
6815
|
-
"text": "
|
|
7140
|
+
"text": "number"
|
|
6816
7141
|
},
|
|
6817
|
-
"
|
|
7142
|
+
"fieldName": "pollingInterval",
|
|
7143
|
+
"inheritedFrom": {
|
|
7144
|
+
"name": "GenesisGridDatasourceElement",
|
|
7145
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7146
|
+
}
|
|
6818
7147
|
},
|
|
6819
7148
|
{
|
|
6820
|
-
"
|
|
6821
|
-
"name": "rowData",
|
|
7149
|
+
"name": "disable-polling",
|
|
6822
7150
|
"type": {
|
|
6823
|
-
"text": "
|
|
7151
|
+
"text": "boolean"
|
|
6824
7152
|
},
|
|
6825
|
-
"default": "
|
|
7153
|
+
"default": "false",
|
|
7154
|
+
"fieldName": "disablePolling",
|
|
7155
|
+
"inheritedFrom": {
|
|
7156
|
+
"name": "GenesisGridDatasourceElement",
|
|
7157
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7158
|
+
}
|
|
7159
|
+
},
|
|
7160
|
+
{
|
|
7161
|
+
"name": "request-auto-setup",
|
|
7162
|
+
"type": {
|
|
7163
|
+
"text": "boolean"
|
|
7164
|
+
},
|
|
7165
|
+
"default": "true",
|
|
7166
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
7167
|
+
"fieldName": "requestAutoSetup",
|
|
7168
|
+
"inheritedFrom": {
|
|
7169
|
+
"name": "GenesisGridDatasourceElement",
|
|
7170
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7171
|
+
}
|
|
7172
|
+
},
|
|
7173
|
+
{
|
|
7174
|
+
"name": "row-id",
|
|
7175
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
7176
|
+
"fieldName": "rowIdAttr",
|
|
7177
|
+
"inheritedFrom": {
|
|
7178
|
+
"name": "GenesisGridDatasourceElement",
|
|
7179
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7180
|
+
}
|
|
6826
7181
|
}
|
|
6827
7182
|
]
|
|
6828
7183
|
}
|
|
@@ -6830,30 +7185,44 @@
|
|
|
6830
7185
|
"exports": [
|
|
6831
7186
|
{
|
|
6832
7187
|
"kind": "js",
|
|
6833
|
-
"name": "
|
|
7188
|
+
"name": "criteriaDelimiter",
|
|
6834
7189
|
"declaration": {
|
|
6835
|
-
"name": "
|
|
7190
|
+
"name": "criteriaDelimiter",
|
|
6836
7191
|
"module": "src/datasource/base.datasource.ts"
|
|
6837
7192
|
}
|
|
6838
7193
|
},
|
|
6839
7194
|
{
|
|
6840
7195
|
"kind": "js",
|
|
6841
|
-
"name": "
|
|
7196
|
+
"name": "criteriaJoin",
|
|
6842
7197
|
"declaration": {
|
|
6843
|
-
"name": "
|
|
7198
|
+
"name": "criteriaJoin",
|
|
7199
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7200
|
+
}
|
|
7201
|
+
},
|
|
7202
|
+
{
|
|
7203
|
+
"kind": "js",
|
|
7204
|
+
"name": "GenesisGridDatasourceElement",
|
|
7205
|
+
"declaration": {
|
|
7206
|
+
"name": "GenesisGridDatasourceElement",
|
|
6844
7207
|
"module": "src/datasource/base.datasource.ts"
|
|
6845
7208
|
}
|
|
6846
7209
|
},
|
|
6847
7210
|
{
|
|
6848
7211
|
"kind": "js",
|
|
6849
|
-
"name": "
|
|
7212
|
+
"name": "GridProBaseDatasource",
|
|
6850
7213
|
"declaration": {
|
|
6851
|
-
"name": "
|
|
7214
|
+
"name": "GridProBaseDatasource",
|
|
6852
7215
|
"module": "src/datasource/base.datasource.ts"
|
|
6853
7216
|
}
|
|
6854
7217
|
}
|
|
6855
7218
|
]
|
|
6856
7219
|
},
|
|
7220
|
+
{
|
|
7221
|
+
"kind": "javascript-module",
|
|
7222
|
+
"path": "src/datasource/base.types.ts",
|
|
7223
|
+
"declarations": [],
|
|
7224
|
+
"exports": []
|
|
7225
|
+
},
|
|
6857
7226
|
{
|
|
6858
7227
|
"kind": "javascript-module",
|
|
6859
7228
|
"path": "src/datasource/client-side.datasource.ts",
|
|
@@ -6953,28 +7322,6 @@
|
|
|
6953
7322
|
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
6954
7323
|
}
|
|
6955
7324
|
},
|
|
6956
|
-
{
|
|
6957
|
-
"kind": "field",
|
|
6958
|
-
"name": "auth",
|
|
6959
|
-
"type": {
|
|
6960
|
-
"text": "Auth"
|
|
6961
|
-
},
|
|
6962
|
-
"inheritedFrom": {
|
|
6963
|
-
"name": "GridProGenesisDatasource",
|
|
6964
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
6965
|
-
}
|
|
6966
|
-
},
|
|
6967
|
-
{
|
|
6968
|
-
"kind": "field",
|
|
6969
|
-
"name": "datasource",
|
|
6970
|
-
"type": {
|
|
6971
|
-
"text": "Datasource"
|
|
6972
|
-
},
|
|
6973
|
-
"inheritedFrom": {
|
|
6974
|
-
"name": "GridProGenesisDatasource",
|
|
6975
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
6976
|
-
}
|
|
6977
|
-
},
|
|
6978
7325
|
{
|
|
6979
7326
|
"kind": "field",
|
|
6980
7327
|
"name": "applyFuncName",
|
|
@@ -7023,40 +7370,6 @@
|
|
|
7023
7370
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7024
7371
|
}
|
|
7025
7372
|
},
|
|
7026
|
-
{
|
|
7027
|
-
"kind": "field",
|
|
7028
|
-
"name": "pollingInterval",
|
|
7029
|
-
"type": {
|
|
7030
|
-
"text": "number"
|
|
7031
|
-
},
|
|
7032
|
-
"inheritedFrom": {
|
|
7033
|
-
"name": "GridProGenesisDatasource",
|
|
7034
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7035
|
-
}
|
|
7036
|
-
},
|
|
7037
|
-
{
|
|
7038
|
-
"kind": "field",
|
|
7039
|
-
"name": "disablePolling",
|
|
7040
|
-
"type": {
|
|
7041
|
-
"text": "boolean"
|
|
7042
|
-
},
|
|
7043
|
-
"default": "false",
|
|
7044
|
-
"inheritedFrom": {
|
|
7045
|
-
"name": "GridProGenesisDatasource",
|
|
7046
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7047
|
-
}
|
|
7048
|
-
},
|
|
7049
|
-
{
|
|
7050
|
-
"kind": "field",
|
|
7051
|
-
"name": "request",
|
|
7052
|
-
"type": {
|
|
7053
|
-
"text": "any"
|
|
7054
|
-
},
|
|
7055
|
-
"inheritedFrom": {
|
|
7056
|
-
"name": "GridProGenesisDatasource",
|
|
7057
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7058
|
-
}
|
|
7059
|
-
},
|
|
7060
7373
|
{
|
|
7061
7374
|
"kind": "method",
|
|
7062
7375
|
"name": "requestChanged",
|
|
@@ -7174,32 +7487,6 @@
|
|
|
7174
7487
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7175
7488
|
}
|
|
7176
7489
|
},
|
|
7177
|
-
{
|
|
7178
|
-
"kind": "field",
|
|
7179
|
-
"name": "criteriaFromFilters",
|
|
7180
|
-
"type": {
|
|
7181
|
-
"text": "Map<string, string>"
|
|
7182
|
-
},
|
|
7183
|
-
"privacy": "private",
|
|
7184
|
-
"default": "new Map()",
|
|
7185
|
-
"inheritedFrom": {
|
|
7186
|
-
"name": "GridProGenesisDatasource",
|
|
7187
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7188
|
-
}
|
|
7189
|
-
},
|
|
7190
|
-
{
|
|
7191
|
-
"kind": "field",
|
|
7192
|
-
"name": "update",
|
|
7193
|
-
"type": {
|
|
7194
|
-
"text": "BehaviorSubject<Map<string, string>>"
|
|
7195
|
-
},
|
|
7196
|
-
"privacy": "private",
|
|
7197
|
-
"default": "new BehaviorSubject(new Map())",
|
|
7198
|
-
"inheritedFrom": {
|
|
7199
|
-
"name": "GridProGenesisDatasource",
|
|
7200
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7201
|
-
}
|
|
7202
|
-
},
|
|
7203
7490
|
{
|
|
7204
7491
|
"kind": "method",
|
|
7205
7492
|
"name": "colDefsDeepClone",
|
|
@@ -7256,10 +7543,21 @@
|
|
|
7256
7543
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7257
7544
|
}
|
|
7258
7545
|
},
|
|
7546
|
+
{
|
|
7547
|
+
"kind": "method",
|
|
7548
|
+
"name": "destroy",
|
|
7549
|
+
"description": "Destroys the datasource, resetting it to its initial state.",
|
|
7550
|
+
"privacy": "public",
|
|
7551
|
+
"inheritedFrom": {
|
|
7552
|
+
"name": "GridProGenesisDatasource",
|
|
7553
|
+
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7554
|
+
}
|
|
7555
|
+
},
|
|
7259
7556
|
{
|
|
7260
7557
|
"kind": "method",
|
|
7261
7558
|
"name": "deinit",
|
|
7262
7559
|
"description": "Deinitialises the datasource, resetting it to its initial state.",
|
|
7560
|
+
"deprecated": "Use `destroy` instead",
|
|
7263
7561
|
"privacy": "public",
|
|
7264
7562
|
"inheritedFrom": {
|
|
7265
7563
|
"name": "GridProGenesisDatasource",
|
|
@@ -7271,7 +7569,7 @@
|
|
|
7271
7569
|
"name": "reset",
|
|
7272
7570
|
"description": "Resets the datasource to its initial state.",
|
|
7273
7571
|
"privacy": "public",
|
|
7274
|
-
"deprecated": "Use `
|
|
7572
|
+
"deprecated": "Use `destroy` instead",
|
|
7275
7573
|
"inheritedFrom": {
|
|
7276
7574
|
"name": "GridProGenesisDatasource",
|
|
7277
7575
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
@@ -7315,9 +7613,9 @@
|
|
|
7315
7613
|
"name": "handleErrors",
|
|
7316
7614
|
"parameters": [
|
|
7317
7615
|
{
|
|
7318
|
-
"name": "
|
|
7616
|
+
"name": "errors",
|
|
7319
7617
|
"type": {
|
|
7320
|
-
"text": "string"
|
|
7618
|
+
"text": "string | any[]"
|
|
7321
7619
|
}
|
|
7322
7620
|
}
|
|
7323
7621
|
],
|
|
@@ -7326,20 +7624,6 @@
|
|
|
7326
7624
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7327
7625
|
}
|
|
7328
7626
|
},
|
|
7329
|
-
{
|
|
7330
|
-
"kind": "method",
|
|
7331
|
-
"name": "datasourceOptions",
|
|
7332
|
-
"privacy": "private",
|
|
7333
|
-
"return": {
|
|
7334
|
-
"type": {
|
|
7335
|
-
"text": "DatasourceOptions"
|
|
7336
|
-
}
|
|
7337
|
-
},
|
|
7338
|
-
"inheritedFrom": {
|
|
7339
|
-
"name": "GridProGenesisDatasource",
|
|
7340
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7341
|
-
}
|
|
7342
|
-
},
|
|
7343
7627
|
{
|
|
7344
7628
|
"kind": "method",
|
|
7345
7629
|
"name": "handleStreamResult",
|
|
@@ -7408,20 +7692,6 @@
|
|
|
7408
7692
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7409
7693
|
}
|
|
7410
7694
|
},
|
|
7411
|
-
{
|
|
7412
|
-
"kind": "method",
|
|
7413
|
-
"name": "buildCriteria",
|
|
7414
|
-
"privacy": "private",
|
|
7415
|
-
"return": {
|
|
7416
|
-
"type": {
|
|
7417
|
-
"text": "string"
|
|
7418
|
-
}
|
|
7419
|
-
},
|
|
7420
|
-
"inheritedFrom": {
|
|
7421
|
-
"name": "GridProGenesisDatasource",
|
|
7422
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
7423
|
-
}
|
|
7424
|
-
},
|
|
7425
7695
|
{
|
|
7426
7696
|
"kind": "method",
|
|
7427
7697
|
"name": "setFilter",
|
|
@@ -7441,8 +7711,8 @@
|
|
|
7441
7711
|
}
|
|
7442
7712
|
],
|
|
7443
7713
|
"inheritedFrom": {
|
|
7444
|
-
"name": "
|
|
7445
|
-
"module": "src/
|
|
7714
|
+
"name": "GenesisGridDatasourceElement",
|
|
7715
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7446
7716
|
}
|
|
7447
7717
|
},
|
|
7448
7718
|
{
|
|
@@ -7458,8 +7728,8 @@
|
|
|
7458
7728
|
}
|
|
7459
7729
|
],
|
|
7460
7730
|
"inheritedFrom": {
|
|
7461
|
-
"name": "
|
|
7462
|
-
"module": "src/
|
|
7731
|
+
"name": "GenesisGridDatasourceElement",
|
|
7732
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7463
7733
|
}
|
|
7464
7734
|
},
|
|
7465
7735
|
{
|
|
@@ -7748,6 +8018,17 @@
|
|
|
7748
8018
|
"module": "src/datasource/base.datasource.ts"
|
|
7749
8019
|
}
|
|
7750
8020
|
},
|
|
8021
|
+
{
|
|
8022
|
+
"kind": "field",
|
|
8023
|
+
"name": "datasource",
|
|
8024
|
+
"type": {
|
|
8025
|
+
"text": "Datasource"
|
|
8026
|
+
},
|
|
8027
|
+
"inheritedFrom": {
|
|
8028
|
+
"name": "GenesisGridDatasourceElement",
|
|
8029
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8030
|
+
}
|
|
8031
|
+
},
|
|
7751
8032
|
{
|
|
7752
8033
|
"kind": "field",
|
|
7753
8034
|
"name": "deferredGridOptions",
|
|
@@ -7884,6 +8165,64 @@
|
|
|
7884
8165
|
"module": "src/datasource/base.datasource.ts"
|
|
7885
8166
|
}
|
|
7886
8167
|
},
|
|
8168
|
+
{
|
|
8169
|
+
"kind": "field",
|
|
8170
|
+
"name": "viewNumber",
|
|
8171
|
+
"type": {
|
|
8172
|
+
"text": "number"
|
|
8173
|
+
},
|
|
8174
|
+
"inheritedFrom": {
|
|
8175
|
+
"name": "GenesisGridDatasourceElement",
|
|
8176
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8177
|
+
}
|
|
8178
|
+
},
|
|
8179
|
+
{
|
|
8180
|
+
"kind": "field",
|
|
8181
|
+
"name": "pollingInterval",
|
|
8182
|
+
"type": {
|
|
8183
|
+
"text": "number"
|
|
8184
|
+
},
|
|
8185
|
+
"inheritedFrom": {
|
|
8186
|
+
"name": "GenesisGridDatasourceElement",
|
|
8187
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8188
|
+
}
|
|
8189
|
+
},
|
|
8190
|
+
{
|
|
8191
|
+
"kind": "field",
|
|
8192
|
+
"name": "disablePolling",
|
|
8193
|
+
"type": {
|
|
8194
|
+
"text": "boolean"
|
|
8195
|
+
},
|
|
8196
|
+
"default": "false",
|
|
8197
|
+
"inheritedFrom": {
|
|
8198
|
+
"name": "GenesisGridDatasourceElement",
|
|
8199
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8200
|
+
}
|
|
8201
|
+
},
|
|
8202
|
+
{
|
|
8203
|
+
"kind": "field",
|
|
8204
|
+
"name": "request",
|
|
8205
|
+
"type": {
|
|
8206
|
+
"text": "any"
|
|
8207
|
+
},
|
|
8208
|
+
"inheritedFrom": {
|
|
8209
|
+
"name": "GenesisGridDatasourceElement",
|
|
8210
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8211
|
+
}
|
|
8212
|
+
},
|
|
8213
|
+
{
|
|
8214
|
+
"kind": "field",
|
|
8215
|
+
"name": "requestAutoSetup",
|
|
8216
|
+
"type": {
|
|
8217
|
+
"text": "boolean"
|
|
8218
|
+
},
|
|
8219
|
+
"default": "true",
|
|
8220
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
8221
|
+
"inheritedFrom": {
|
|
8222
|
+
"name": "GenesisGridDatasourceElement",
|
|
8223
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8224
|
+
}
|
|
8225
|
+
},
|
|
7887
8226
|
{
|
|
7888
8227
|
"kind": "field",
|
|
7889
8228
|
"name": "rowIdAttr",
|
|
@@ -7919,14 +8258,67 @@
|
|
|
7919
8258
|
"module": "src/datasource/base.datasource.ts"
|
|
7920
8259
|
}
|
|
7921
8260
|
},
|
|
8261
|
+
{
|
|
8262
|
+
"kind": "field",
|
|
8263
|
+
"name": "criteriaFromFilters",
|
|
8264
|
+
"type": {
|
|
8265
|
+
"text": "Map<string, string>"
|
|
8266
|
+
},
|
|
8267
|
+
"privacy": "protected",
|
|
8268
|
+
"default": "new Map()",
|
|
8269
|
+
"inheritedFrom": {
|
|
8270
|
+
"name": "GenesisGridDatasourceElement",
|
|
8271
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8272
|
+
}
|
|
8273
|
+
},
|
|
8274
|
+
{
|
|
8275
|
+
"kind": "field",
|
|
8276
|
+
"name": "update",
|
|
8277
|
+
"type": {
|
|
8278
|
+
"text": "BehaviorSubject<Map<string, string>>"
|
|
8279
|
+
},
|
|
8280
|
+
"privacy": "protected",
|
|
8281
|
+
"default": "new BehaviorSubject(new Map())",
|
|
8282
|
+
"inheritedFrom": {
|
|
8283
|
+
"name": "GenesisGridDatasourceElement",
|
|
8284
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8285
|
+
}
|
|
8286
|
+
},
|
|
8287
|
+
{
|
|
8288
|
+
"kind": "method",
|
|
8289
|
+
"name": "datasourceOptions",
|
|
8290
|
+
"privacy": "protected",
|
|
8291
|
+
"return": {
|
|
8292
|
+
"type": {
|
|
8293
|
+
"text": "DatasourceOptions"
|
|
8294
|
+
}
|
|
8295
|
+
},
|
|
8296
|
+
"inheritedFrom": {
|
|
8297
|
+
"name": "GenesisGridDatasourceElement",
|
|
8298
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8299
|
+
}
|
|
8300
|
+
},
|
|
8301
|
+
{
|
|
8302
|
+
"kind": "method",
|
|
8303
|
+
"name": "buildCriteria",
|
|
8304
|
+
"privacy": "private",
|
|
8305
|
+
"return": {
|
|
8306
|
+
"type": {
|
|
8307
|
+
"text": "string"
|
|
8308
|
+
}
|
|
8309
|
+
},
|
|
8310
|
+
"inheritedFrom": {
|
|
8311
|
+
"name": "GenesisGridDatasourceElement",
|
|
8312
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8313
|
+
}
|
|
8314
|
+
},
|
|
7922
8315
|
{
|
|
7923
8316
|
"kind": "field",
|
|
7924
8317
|
"name": "isRequestServer",
|
|
7925
8318
|
"type": {
|
|
7926
8319
|
"text": "boolean"
|
|
7927
8320
|
},
|
|
7928
|
-
"
|
|
7929
|
-
"default": "false",
|
|
8321
|
+
"readonly": true,
|
|
7930
8322
|
"inheritedFrom": {
|
|
7931
8323
|
"name": "GenesisGridDatasourceElement",
|
|
7932
8324
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -8080,29 +8472,6 @@
|
|
|
8080
8472
|
}
|
|
8081
8473
|
],
|
|
8082
8474
|
"attributes": [
|
|
8083
|
-
{
|
|
8084
|
-
"name": "polling-interval",
|
|
8085
|
-
"type": {
|
|
8086
|
-
"text": "number"
|
|
8087
|
-
},
|
|
8088
|
-
"fieldName": "pollingInterval",
|
|
8089
|
-
"inheritedFrom": {
|
|
8090
|
-
"name": "GridProGenesisDatasource",
|
|
8091
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
8092
|
-
}
|
|
8093
|
-
},
|
|
8094
|
-
{
|
|
8095
|
-
"name": "disable-polling",
|
|
8096
|
-
"type": {
|
|
8097
|
-
"text": "boolean"
|
|
8098
|
-
},
|
|
8099
|
-
"default": "false",
|
|
8100
|
-
"fieldName": "disablePolling",
|
|
8101
|
-
"inheritedFrom": {
|
|
8102
|
-
"name": "GridProGenesisDatasource",
|
|
8103
|
-
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
8104
|
-
}
|
|
8105
|
-
},
|
|
8106
8475
|
{
|
|
8107
8476
|
"name": "restart-on-reconnection",
|
|
8108
8477
|
"type": {
|
|
@@ -8229,16 +8598,63 @@
|
|
|
8229
8598
|
}
|
|
8230
8599
|
},
|
|
8231
8600
|
{
|
|
8232
|
-
"name": "
|
|
8233
|
-
"
|
|
8234
|
-
|
|
8601
|
+
"name": "view-number",
|
|
8602
|
+
"type": {
|
|
8603
|
+
"text": "number"
|
|
8604
|
+
},
|
|
8605
|
+
"fieldName": "viewNumber",
|
|
8235
8606
|
"inheritedFrom": {
|
|
8236
8607
|
"name": "GenesisGridDatasourceElement",
|
|
8237
8608
|
"module": "src/datasource/base.datasource.ts"
|
|
8238
8609
|
}
|
|
8239
|
-
}
|
|
8240
|
-
|
|
8241
|
-
|
|
8610
|
+
},
|
|
8611
|
+
{
|
|
8612
|
+
"name": "polling-interval",
|
|
8613
|
+
"type": {
|
|
8614
|
+
"text": "number"
|
|
8615
|
+
},
|
|
8616
|
+
"fieldName": "pollingInterval",
|
|
8617
|
+
"inheritedFrom": {
|
|
8618
|
+
"name": "GenesisGridDatasourceElement",
|
|
8619
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8620
|
+
}
|
|
8621
|
+
},
|
|
8622
|
+
{
|
|
8623
|
+
"name": "disable-polling",
|
|
8624
|
+
"type": {
|
|
8625
|
+
"text": "boolean"
|
|
8626
|
+
},
|
|
8627
|
+
"default": "false",
|
|
8628
|
+
"fieldName": "disablePolling",
|
|
8629
|
+
"inheritedFrom": {
|
|
8630
|
+
"name": "GenesisGridDatasourceElement",
|
|
8631
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8632
|
+
}
|
|
8633
|
+
},
|
|
8634
|
+
{
|
|
8635
|
+
"name": "request-auto-setup",
|
|
8636
|
+
"type": {
|
|
8637
|
+
"text": "boolean"
|
|
8638
|
+
},
|
|
8639
|
+
"default": "true",
|
|
8640
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
8641
|
+
"fieldName": "requestAutoSetup",
|
|
8642
|
+
"inheritedFrom": {
|
|
8643
|
+
"name": "GenesisGridDatasourceElement",
|
|
8644
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8645
|
+
}
|
|
8646
|
+
},
|
|
8647
|
+
{
|
|
8648
|
+
"name": "row-id",
|
|
8649
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
8650
|
+
"fieldName": "rowIdAttr",
|
|
8651
|
+
"inheritedFrom": {
|
|
8652
|
+
"name": "GenesisGridDatasourceElement",
|
|
8653
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8654
|
+
}
|
|
8655
|
+
}
|
|
8656
|
+
]
|
|
8657
|
+
}
|
|
8242
8658
|
],
|
|
8243
8659
|
"exports": [
|
|
8244
8660
|
{
|
|
@@ -8337,90 +8753,34 @@
|
|
|
8337
8753
|
"declarations": [
|
|
8338
8754
|
{
|
|
8339
8755
|
"kind": "class",
|
|
8340
|
-
"description": "
|
|
8341
|
-
"name": "
|
|
8756
|
+
"description": "A Genesis Datasource element, for server-side | SSRM-compatible data fetching and used exclusively by the GridPro element.",
|
|
8757
|
+
"name": "GridProServerSideDatasource",
|
|
8342
8758
|
"members": [
|
|
8343
8759
|
{
|
|
8344
8760
|
"kind": "field",
|
|
8345
|
-
"name": "
|
|
8346
|
-
"type": {
|
|
8347
|
-
"text": "Auth"
|
|
8348
|
-
}
|
|
8349
|
-
},
|
|
8350
|
-
{
|
|
8351
|
-
"kind": "field",
|
|
8352
|
-
"name": "connect",
|
|
8353
|
-
"type": {
|
|
8354
|
-
"text": "Connect"
|
|
8355
|
-
}
|
|
8356
|
-
},
|
|
8357
|
-
{
|
|
8358
|
-
"kind": "field",
|
|
8359
|
-
"name": "dataserverStream",
|
|
8360
|
-
"type": {
|
|
8361
|
-
"text": "SocketObservable<FilteredDataServerResult>"
|
|
8362
|
-
}
|
|
8363
|
-
},
|
|
8364
|
-
{
|
|
8365
|
-
"kind": "field",
|
|
8366
|
-
"name": "dataserverStreamSubscription",
|
|
8367
|
-
"type": {
|
|
8368
|
-
"text": "SocketSubscription"
|
|
8369
|
-
}
|
|
8370
|
-
},
|
|
8371
|
-
{
|
|
8372
|
-
"kind": "field",
|
|
8373
|
-
"name": "createDataserverStreamFunc",
|
|
8374
|
-
"type": {
|
|
8375
|
-
"text": "(\n existingParams?: any,\n ) => Promise<SocketObservable<FilteredDataServerResult>>"
|
|
8376
|
-
}
|
|
8377
|
-
},
|
|
8378
|
-
{
|
|
8379
|
-
"kind": "field",
|
|
8380
|
-
"name": "resourceName",
|
|
8761
|
+
"name": "applyFuncName",
|
|
8381
8762
|
"type": {
|
|
8382
8763
|
"text": "string"
|
|
8383
8764
|
},
|
|
8384
|
-
"privacy": "
|
|
8385
|
-
|
|
8386
|
-
|
|
8387
|
-
|
|
8388
|
-
|
|
8389
|
-
"type": {
|
|
8390
|
-
"text": "any"
|
|
8765
|
+
"privacy": "protected",
|
|
8766
|
+
"default": "'applyServerSideTransaction'",
|
|
8767
|
+
"inheritedFrom": {
|
|
8768
|
+
"name": "GridProBaseDatasource",
|
|
8769
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8391
8770
|
}
|
|
8392
8771
|
},
|
|
8393
8772
|
{
|
|
8394
8773
|
"kind": "field",
|
|
8395
|
-
"name": "
|
|
8396
|
-
"type": {
|
|
8397
|
-
"text": "Map<string, [string]>"
|
|
8398
|
-
},
|
|
8399
|
-
"privacy": "private"
|
|
8400
|
-
},
|
|
8401
|
-
{
|
|
8402
|
-
"kind": "field",
|
|
8403
|
-
"name": "resourceColDefs",
|
|
8404
|
-
"type": {
|
|
8405
|
-
"text": "MetadataDetail[]"
|
|
8406
|
-
},
|
|
8407
|
-
"privacy": "private"
|
|
8408
|
-
},
|
|
8409
|
-
{
|
|
8410
|
-
"kind": "field",
|
|
8411
|
-
"name": "maxRows",
|
|
8412
|
-
"type": {
|
|
8413
|
-
"text": "number"
|
|
8414
|
-
},
|
|
8415
|
-
"privacy": "private"
|
|
8416
|
-
},
|
|
8417
|
-
{
|
|
8418
|
-
"kind": "field",
|
|
8419
|
-
"name": "maxView",
|
|
8774
|
+
"name": "applyAsyncFuncName",
|
|
8420
8775
|
"type": {
|
|
8421
|
-
"text": "
|
|
8776
|
+
"text": "string"
|
|
8422
8777
|
},
|
|
8423
|
-
"privacy": "
|
|
8778
|
+
"privacy": "protected",
|
|
8779
|
+
"default": "'applyServerSideTransactionAsync'",
|
|
8780
|
+
"inheritedFrom": {
|
|
8781
|
+
"name": "GridProBaseDatasource",
|
|
8782
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8783
|
+
}
|
|
8424
8784
|
},
|
|
8425
8785
|
{
|
|
8426
8786
|
"kind": "field",
|
|
@@ -8428,397 +8788,193 @@
|
|
|
8428
8788
|
"type": {
|
|
8429
8789
|
"text": "boolean"
|
|
8430
8790
|
},
|
|
8431
|
-
"
|
|
8432
|
-
},
|
|
8433
|
-
{
|
|
8434
|
-
"kind": "field",
|
|
8435
|
-
"name": "streamSourceRef",
|
|
8436
|
-
"type": {
|
|
8437
|
-
"text": "string"
|
|
8438
|
-
}
|
|
8791
|
+
"default": "false"
|
|
8439
8792
|
},
|
|
8440
8793
|
{
|
|
8441
8794
|
"kind": "field",
|
|
8442
|
-
"name": "
|
|
8795
|
+
"name": "zeroBasedViewNumber",
|
|
8443
8796
|
"type": {
|
|
8444
8797
|
"text": "boolean"
|
|
8445
8798
|
},
|
|
8446
|
-
"
|
|
8447
|
-
"
|
|
8799
|
+
"default": "false",
|
|
8800
|
+
"description": "The starting VIEW_NUMBER of the data to be fetched."
|
|
8448
8801
|
},
|
|
8449
8802
|
{
|
|
8450
8803
|
"kind": "field",
|
|
8451
|
-
"name": "
|
|
8804
|
+
"name": "liveUpdates",
|
|
8452
8805
|
"type": {
|
|
8453
|
-
"text": "
|
|
8806
|
+
"text": "boolean"
|
|
8454
8807
|
},
|
|
8455
|
-
"
|
|
8456
|
-
"
|
|
8808
|
+
"default": "false",
|
|
8809
|
+
"description": "Enable live updates for the grid."
|
|
8457
8810
|
},
|
|
8458
8811
|
{
|
|
8459
8812
|
"kind": "field",
|
|
8460
|
-
"name": "
|
|
8813
|
+
"name": "request",
|
|
8461
8814
|
"type": {
|
|
8462
|
-
"text": "
|
|
8815
|
+
"text": "any"
|
|
8463
8816
|
},
|
|
8464
|
-
"
|
|
8465
|
-
|
|
8817
|
+
"inheritedFrom": {
|
|
8818
|
+
"name": "GenesisGridDatasourceElement",
|
|
8819
|
+
"module": "src/datasource/base.datasource.ts"
|
|
8820
|
+
},
|
|
8821
|
+
"default": "{}"
|
|
8466
8822
|
},
|
|
8467
8823
|
{
|
|
8468
8824
|
"kind": "field",
|
|
8469
|
-
"name": "
|
|
8825
|
+
"name": "indexes",
|
|
8470
8826
|
"type": {
|
|
8471
|
-
"text": "
|
|
8827
|
+
"text": "Map<string, [string]>"
|
|
8472
8828
|
},
|
|
8473
8829
|
"privacy": "private"
|
|
8474
8830
|
},
|
|
8475
8831
|
{
|
|
8476
8832
|
"kind": "field",
|
|
8477
|
-
"name": "
|
|
8833
|
+
"name": "ssrmDatasource",
|
|
8478
8834
|
"type": {
|
|
8479
|
-
"text": "
|
|
8835
|
+
"text": "DataserverServerSideDatasource | ReqRepServerSideDatasource"
|
|
8480
8836
|
},
|
|
8481
8837
|
"privacy": "private"
|
|
8482
8838
|
},
|
|
8483
8839
|
{
|
|
8484
8840
|
"kind": "field",
|
|
8485
|
-
"name": "
|
|
8841
|
+
"name": "liveUpdatesStream",
|
|
8486
8842
|
"type": {
|
|
8487
|
-
"text": "
|
|
8843
|
+
"text": "SocketSubscription"
|
|
8488
8844
|
},
|
|
8489
8845
|
"privacy": "private"
|
|
8490
8846
|
},
|
|
8491
8847
|
{
|
|
8492
8848
|
"kind": "method",
|
|
8493
|
-
"name": "
|
|
8849
|
+
"name": "resourceNameChanged",
|
|
8494
8850
|
"parameters": [
|
|
8495
8851
|
{
|
|
8496
|
-
"name": "
|
|
8852
|
+
"name": "oldValue",
|
|
8497
8853
|
"type": {
|
|
8498
|
-
"text": "
|
|
8854
|
+
"text": "string"
|
|
8855
|
+
}
|
|
8856
|
+
},
|
|
8857
|
+
{
|
|
8858
|
+
"name": "newValue",
|
|
8859
|
+
"type": {
|
|
8860
|
+
"text": "string"
|
|
8499
8861
|
}
|
|
8500
8862
|
}
|
|
8501
8863
|
]
|
|
8502
8864
|
},
|
|
8503
8865
|
{
|
|
8504
8866
|
"kind": "method",
|
|
8505
|
-
"name": "
|
|
8506
|
-
"privacy": "private",
|
|
8867
|
+
"name": "criteriaChanged",
|
|
8507
8868
|
"parameters": [
|
|
8508
8869
|
{
|
|
8509
|
-
"name": "
|
|
8870
|
+
"name": "oldCriteria",
|
|
8510
8871
|
"type": {
|
|
8511
|
-
"text": "
|
|
8872
|
+
"text": "string"
|
|
8512
8873
|
}
|
|
8513
8874
|
},
|
|
8514
8875
|
{
|
|
8515
|
-
"name": "
|
|
8876
|
+
"name": "newCriteria",
|
|
8516
8877
|
"type": {
|
|
8517
|
-
"text": "
|
|
8878
|
+
"text": "string"
|
|
8518
8879
|
}
|
|
8519
8880
|
}
|
|
8520
8881
|
]
|
|
8521
8882
|
},
|
|
8522
8883
|
{
|
|
8523
8884
|
"kind": "method",
|
|
8524
|
-
"name": "
|
|
8525
|
-
"privacy": "private",
|
|
8885
|
+
"name": "deepClone",
|
|
8526
8886
|
"return": {
|
|
8527
8887
|
"type": {
|
|
8528
|
-
"text": "
|
|
8888
|
+
"text": "Node"
|
|
8529
8889
|
}
|
|
8530
8890
|
},
|
|
8531
|
-
"
|
|
8532
|
-
|
|
8533
|
-
|
|
8534
|
-
|
|
8535
|
-
"text": "Map<string, any>"
|
|
8536
|
-
}
|
|
8537
|
-
}
|
|
8538
|
-
]
|
|
8891
|
+
"inheritedFrom": {
|
|
8892
|
+
"name": "LifecycleMixin",
|
|
8893
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
8894
|
+
}
|
|
8539
8895
|
},
|
|
8540
8896
|
{
|
|
8541
8897
|
"kind": "method",
|
|
8542
|
-
"name": "
|
|
8898
|
+
"name": "init"
|
|
8543
8899
|
},
|
|
8544
8900
|
{
|
|
8545
8901
|
"kind": "method",
|
|
8546
|
-
"name": "
|
|
8547
|
-
"privacy": "private",
|
|
8548
|
-
"return": {
|
|
8549
|
-
"type": {
|
|
8550
|
-
"text": "Promise<void>"
|
|
8551
|
-
}
|
|
8552
|
-
},
|
|
8902
|
+
"name": "onPaginationChanged",
|
|
8553
8903
|
"parameters": [
|
|
8554
8904
|
{
|
|
8555
|
-
"name": "
|
|
8905
|
+
"name": "event",
|
|
8556
8906
|
"type": {
|
|
8557
|
-
"text": "
|
|
8907
|
+
"text": "PaginationChangedEvent"
|
|
8558
8908
|
}
|
|
8559
8909
|
}
|
|
8560
8910
|
]
|
|
8561
8911
|
},
|
|
8562
8912
|
{
|
|
8563
8913
|
"kind": "method",
|
|
8564
|
-
"name": "
|
|
8914
|
+
"name": "destroy"
|
|
8915
|
+
},
|
|
8916
|
+
{
|
|
8917
|
+
"kind": "method",
|
|
8918
|
+
"name": "restart"
|
|
8919
|
+
},
|
|
8920
|
+
{
|
|
8921
|
+
"kind": "method",
|
|
8922
|
+
"name": "clearRowData",
|
|
8565
8923
|
"privacy": "private",
|
|
8566
8924
|
"parameters": [
|
|
8567
8925
|
{
|
|
8568
|
-
"name": "
|
|
8569
|
-
|
|
8570
|
-
{
|
|
8571
|
-
"name": "searchValue"
|
|
8926
|
+
"name": "withColumnDefs",
|
|
8927
|
+
"default": "true"
|
|
8572
8928
|
}
|
|
8573
8929
|
]
|
|
8574
8930
|
},
|
|
8575
8931
|
{
|
|
8576
8932
|
"kind": "method",
|
|
8577
|
-
"name": "
|
|
8933
|
+
"name": "getResourceIndexes",
|
|
8578
8934
|
"privacy": "private",
|
|
8579
8935
|
"return": {
|
|
8580
8936
|
"type": {
|
|
8581
|
-
"text": "
|
|
8937
|
+
"text": "Map<string, [string]>"
|
|
8582
8938
|
}
|
|
8583
8939
|
},
|
|
8584
8940
|
"parameters": [
|
|
8585
8941
|
{
|
|
8586
|
-
"name": "
|
|
8942
|
+
"name": "avaialbleIndexes",
|
|
8587
8943
|
"type": {
|
|
8588
|
-
"text": "
|
|
8944
|
+
"text": "IndexDetail[]"
|
|
8589
8945
|
}
|
|
8590
8946
|
}
|
|
8591
8947
|
]
|
|
8592
8948
|
},
|
|
8949
|
+
{
|
|
8950
|
+
"kind": "field",
|
|
8951
|
+
"name": "params",
|
|
8952
|
+
"readonly": true
|
|
8953
|
+
},
|
|
8954
|
+
{
|
|
8955
|
+
"kind": "field",
|
|
8956
|
+
"name": "rowModel",
|
|
8957
|
+
"type": {
|
|
8958
|
+
"text": "IServerSideRowModel"
|
|
8959
|
+
},
|
|
8960
|
+
"readonly": true
|
|
8961
|
+
},
|
|
8593
8962
|
{
|
|
8594
8963
|
"kind": "method",
|
|
8595
|
-
"name": "
|
|
8964
|
+
"name": "createReqRepRequest",
|
|
8596
8965
|
"privacy": "private",
|
|
8597
8966
|
"return": {
|
|
8598
8967
|
"type": {
|
|
8599
|
-
"text": "
|
|
8600
|
-
}
|
|
8601
|
-
}
|
|
8602
|
-
},
|
|
8603
|
-
{
|
|
8604
|
-
"kind": "method",
|
|
8605
|
-
"name": "criteriaFromFilters",
|
|
8606
|
-
"privacy": "private",
|
|
8607
|
-
"return": {
|
|
8608
|
-
"type": {
|
|
8609
|
-
"text": "string[]"
|
|
8610
|
-
}
|
|
8611
|
-
}
|
|
8612
|
-
},
|
|
8613
|
-
{
|
|
8614
|
-
"kind": "method",
|
|
8615
|
-
"name": "getFiltersByType",
|
|
8616
|
-
"privacy": "private",
|
|
8617
|
-
"parameters": [
|
|
8618
|
-
{
|
|
8619
|
-
"name": "filterType",
|
|
8620
|
-
"type": {
|
|
8621
|
-
"text": "string"
|
|
8622
|
-
}
|
|
8623
|
-
}
|
|
8624
|
-
]
|
|
8625
|
-
},
|
|
8626
|
-
{
|
|
8627
|
-
"kind": "field",
|
|
8628
|
-
"name": "rowId",
|
|
8629
|
-
"type": {
|
|
8630
|
-
"text": "string"
|
|
8631
|
-
},
|
|
8632
|
-
"privacy": "protected",
|
|
8633
|
-
"inheritedFrom": {
|
|
8634
|
-
"name": "StreamBaseDatasource",
|
|
8635
|
-
"module": "src/datasource/base.datasource.ts"
|
|
8636
|
-
}
|
|
8637
|
-
},
|
|
8638
|
-
{
|
|
8639
|
-
"kind": "field",
|
|
8640
|
-
"name": "rowData",
|
|
8641
|
-
"type": {
|
|
8642
|
-
"text": "Map<string, any>"
|
|
8643
|
-
},
|
|
8644
|
-
"default": "new Map()",
|
|
8645
|
-
"inheritedFrom": {
|
|
8646
|
-
"name": "StreamBaseDatasource",
|
|
8647
|
-
"module": "src/datasource/base.datasource.ts"
|
|
8648
|
-
}
|
|
8649
|
-
}
|
|
8650
|
-
],
|
|
8651
|
-
"superclass": {
|
|
8652
|
-
"name": "StreamBaseDatasource",
|
|
8653
|
-
"module": "/src/datasource/base.datasource"
|
|
8654
|
-
}
|
|
8655
|
-
},
|
|
8656
|
-
{
|
|
8657
|
-
"kind": "class",
|
|
8658
|
-
"description": "A Genesis Datasource element, for server-side | SSRM-compatible data fetching and used exclusively by the GridPro element.",
|
|
8659
|
-
"name": "GridProServerSideDatasource",
|
|
8660
|
-
"members": [
|
|
8661
|
-
{
|
|
8662
|
-
"kind": "field",
|
|
8663
|
-
"name": "applyFuncName",
|
|
8664
|
-
"type": {
|
|
8665
|
-
"text": "string"
|
|
8666
|
-
},
|
|
8667
|
-
"privacy": "protected",
|
|
8668
|
-
"default": "'applyServerSideTransaction'",
|
|
8669
|
-
"inheritedFrom": {
|
|
8670
|
-
"name": "GridProBaseDatasource",
|
|
8671
|
-
"module": "src/datasource/base.datasource.ts"
|
|
8672
|
-
}
|
|
8673
|
-
},
|
|
8674
|
-
{
|
|
8675
|
-
"kind": "field",
|
|
8676
|
-
"name": "applyAsyncFuncName",
|
|
8677
|
-
"type": {
|
|
8678
|
-
"text": "string"
|
|
8679
|
-
},
|
|
8680
|
-
"privacy": "protected",
|
|
8681
|
-
"default": "'applyServerSideTransactionAsync'",
|
|
8682
|
-
"inheritedFrom": {
|
|
8683
|
-
"name": "GridProBaseDatasource",
|
|
8684
|
-
"module": "src/datasource/base.datasource.ts"
|
|
8685
|
-
}
|
|
8686
|
-
},
|
|
8687
|
-
{
|
|
8688
|
-
"kind": "method",
|
|
8689
|
-
"name": "criteriaChanged",
|
|
8690
|
-
"parameters": [
|
|
8691
|
-
{
|
|
8692
|
-
"name": "oldCriteria",
|
|
8693
|
-
"type": {
|
|
8694
|
-
"text": "string"
|
|
8695
|
-
}
|
|
8696
|
-
},
|
|
8697
|
-
{
|
|
8698
|
-
"name": "newCriteria",
|
|
8699
|
-
"type": {
|
|
8700
|
-
"text": "string"
|
|
8701
|
-
}
|
|
8702
|
-
}
|
|
8703
|
-
]
|
|
8704
|
-
},
|
|
8705
|
-
{
|
|
8706
|
-
"kind": "method",
|
|
8707
|
-
"name": "resourceNameChanged",
|
|
8708
|
-
"parameters": [
|
|
8709
|
-
{
|
|
8710
|
-
"name": "oldValue",
|
|
8711
|
-
"type": {
|
|
8712
|
-
"text": "string"
|
|
8713
|
-
}
|
|
8714
|
-
},
|
|
8715
|
-
{
|
|
8716
|
-
"name": "newValue",
|
|
8717
|
-
"type": {
|
|
8718
|
-
"text": "string"
|
|
8719
|
-
}
|
|
8720
|
-
}
|
|
8721
|
-
]
|
|
8722
|
-
},
|
|
8723
|
-
{
|
|
8724
|
-
"kind": "field",
|
|
8725
|
-
"name": "pagination",
|
|
8726
|
-
"type": {
|
|
8727
|
-
"text": "boolean"
|
|
8728
|
-
},
|
|
8729
|
-
"default": "false"
|
|
8730
|
-
},
|
|
8731
|
-
{
|
|
8732
|
-
"kind": "field",
|
|
8733
|
-
"name": "indexes",
|
|
8734
|
-
"type": {
|
|
8735
|
-
"text": "Map<string, [string]>"
|
|
8736
|
-
},
|
|
8737
|
-
"privacy": "private"
|
|
8738
|
-
},
|
|
8739
|
-
{
|
|
8740
|
-
"kind": "field",
|
|
8741
|
-
"name": "ssrmDatasource",
|
|
8742
|
-
"type": {
|
|
8743
|
-
"text": "StreamDatasource"
|
|
8744
|
-
},
|
|
8745
|
-
"privacy": "private"
|
|
8746
|
-
},
|
|
8747
|
-
{
|
|
8748
|
-
"kind": "field",
|
|
8749
|
-
"name": "originalFieldDef",
|
|
8750
|
-
"type": {
|
|
8751
|
-
"text": "MetadataDetail[]"
|
|
8752
|
-
},
|
|
8753
|
-
"privacy": "private"
|
|
8754
|
-
},
|
|
8755
|
-
{
|
|
8756
|
-
"kind": "method",
|
|
8757
|
-
"name": "deepClone",
|
|
8758
|
-
"return": {
|
|
8759
|
-
"type": {
|
|
8760
|
-
"text": "Node"
|
|
8761
|
-
}
|
|
8762
|
-
},
|
|
8763
|
-
"inheritedFrom": {
|
|
8764
|
-
"name": "LifecycleMixin",
|
|
8765
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
8766
|
-
}
|
|
8767
|
-
},
|
|
8768
|
-
{
|
|
8769
|
-
"kind": "method",
|
|
8770
|
-
"name": "deinit"
|
|
8771
|
-
},
|
|
8772
|
-
{
|
|
8773
|
-
"kind": "method",
|
|
8774
|
-
"name": "init"
|
|
8775
|
-
},
|
|
8776
|
-
{
|
|
8777
|
-
"kind": "method",
|
|
8778
|
-
"name": "restart"
|
|
8779
|
-
},
|
|
8780
|
-
{
|
|
8781
|
-
"kind": "method",
|
|
8782
|
-
"name": "clearRowData",
|
|
8783
|
-
"privacy": "private",
|
|
8784
|
-
"parameters": [
|
|
8785
|
-
{
|
|
8786
|
-
"name": "withColumnDefs",
|
|
8787
|
-
"default": "true"
|
|
8788
|
-
}
|
|
8789
|
-
]
|
|
8790
|
-
},
|
|
8791
|
-
{
|
|
8792
|
-
"kind": "method",
|
|
8793
|
-
"name": "getResourceIndexes",
|
|
8794
|
-
"privacy": "private",
|
|
8795
|
-
"return": {
|
|
8796
|
-
"type": {
|
|
8797
|
-
"text": "Map<string, [string]>"
|
|
8968
|
+
"text": "Promise<RequestServerResult>"
|
|
8798
8969
|
}
|
|
8799
8970
|
},
|
|
8800
8971
|
"parameters": [
|
|
8801
8972
|
{
|
|
8802
|
-
"name": "
|
|
8803
|
-
"
|
|
8804
|
-
"text": "IndexDetail[]"
|
|
8805
|
-
}
|
|
8973
|
+
"name": "existingParams",
|
|
8974
|
+
"default": "null"
|
|
8806
8975
|
}
|
|
8807
8976
|
]
|
|
8808
8977
|
},
|
|
8809
|
-
{
|
|
8810
|
-
"kind": "field",
|
|
8811
|
-
"name": "params",
|
|
8812
|
-
"readonly": true
|
|
8813
|
-
},
|
|
8814
|
-
{
|
|
8815
|
-
"kind": "field",
|
|
8816
|
-
"name": "rowModel",
|
|
8817
|
-
"type": {
|
|
8818
|
-
"text": "IServerSideRowModel"
|
|
8819
|
-
},
|
|
8820
|
-
"readonly": true
|
|
8821
|
-
},
|
|
8822
8978
|
{
|
|
8823
8979
|
"kind": "method",
|
|
8824
8980
|
"name": "createDataserverStream",
|
|
@@ -8835,19 +8991,6 @@
|
|
|
8835
8991
|
}
|
|
8836
8992
|
]
|
|
8837
8993
|
},
|
|
8838
|
-
{
|
|
8839
|
-
"kind": "method",
|
|
8840
|
-
"name": "handleStreamDeletesTemp",
|
|
8841
|
-
"privacy": "private",
|
|
8842
|
-
"parameters": [
|
|
8843
|
-
{
|
|
8844
|
-
"name": "deletes",
|
|
8845
|
-
"type": {
|
|
8846
|
-
"text": "RowData[]"
|
|
8847
|
-
}
|
|
8848
|
-
}
|
|
8849
|
-
]
|
|
8850
|
-
},
|
|
8851
8994
|
{
|
|
8852
8995
|
"kind": "method",
|
|
8853
8996
|
"name": "getAgColumnDefs",
|
|
@@ -9195,6 +9338,17 @@
|
|
|
9195
9338
|
"module": "src/datasource/base.datasource.ts"
|
|
9196
9339
|
}
|
|
9197
9340
|
},
|
|
9341
|
+
{
|
|
9342
|
+
"kind": "field",
|
|
9343
|
+
"name": "datasource",
|
|
9344
|
+
"type": {
|
|
9345
|
+
"text": "Datasource"
|
|
9346
|
+
},
|
|
9347
|
+
"inheritedFrom": {
|
|
9348
|
+
"name": "GenesisGridDatasourceElement",
|
|
9349
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9350
|
+
}
|
|
9351
|
+
},
|
|
9198
9352
|
{
|
|
9199
9353
|
"kind": "field",
|
|
9200
9354
|
"name": "deferredGridOptions",
|
|
@@ -9333,8 +9487,10 @@
|
|
|
9333
9487
|
},
|
|
9334
9488
|
{
|
|
9335
9489
|
"kind": "field",
|
|
9336
|
-
"name": "
|
|
9337
|
-
"
|
|
9490
|
+
"name": "viewNumber",
|
|
9491
|
+
"type": {
|
|
9492
|
+
"text": "number"
|
|
9493
|
+
},
|
|
9338
9494
|
"inheritedFrom": {
|
|
9339
9495
|
"name": "GenesisGridDatasourceElement",
|
|
9340
9496
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9342,12 +9498,10 @@
|
|
|
9342
9498
|
},
|
|
9343
9499
|
{
|
|
9344
9500
|
"kind": "field",
|
|
9345
|
-
"name": "
|
|
9501
|
+
"name": "pollingInterval",
|
|
9346
9502
|
"type": {
|
|
9347
|
-
"text": "
|
|
9503
|
+
"text": "number"
|
|
9348
9504
|
},
|
|
9349
|
-
"privacy": "protected",
|
|
9350
|
-
"readonly": true,
|
|
9351
9505
|
"inheritedFrom": {
|
|
9352
9506
|
"name": "GenesisGridDatasourceElement",
|
|
9353
9507
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9355,12 +9509,11 @@
|
|
|
9355
9509
|
},
|
|
9356
9510
|
{
|
|
9357
9511
|
"kind": "field",
|
|
9358
|
-
"name": "
|
|
9512
|
+
"name": "disablePolling",
|
|
9359
9513
|
"type": {
|
|
9360
|
-
"text": "
|
|
9514
|
+
"text": "boolean"
|
|
9361
9515
|
},
|
|
9362
|
-
"
|
|
9363
|
-
"readonly": true,
|
|
9516
|
+
"default": "false",
|
|
9364
9517
|
"inheritedFrom": {
|
|
9365
9518
|
"name": "GenesisGridDatasourceElement",
|
|
9366
9519
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9368,22 +9521,163 @@
|
|
|
9368
9521
|
},
|
|
9369
9522
|
{
|
|
9370
9523
|
"kind": "field",
|
|
9371
|
-
"name": "
|
|
9524
|
+
"name": "requestAutoSetup",
|
|
9372
9525
|
"type": {
|
|
9373
9526
|
"text": "boolean"
|
|
9374
9527
|
},
|
|
9375
|
-
"
|
|
9376
|
-
"
|
|
9528
|
+
"default": "true",
|
|
9529
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
9377
9530
|
"inheritedFrom": {
|
|
9378
9531
|
"name": "GenesisGridDatasourceElement",
|
|
9379
9532
|
"module": "src/datasource/base.datasource.ts"
|
|
9380
9533
|
}
|
|
9381
9534
|
},
|
|
9382
9535
|
{
|
|
9383
|
-
"kind": "
|
|
9384
|
-
"name": "
|
|
9385
|
-
"
|
|
9386
|
-
|
|
9536
|
+
"kind": "field",
|
|
9537
|
+
"name": "rowIdAttr",
|
|
9538
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
9539
|
+
"inheritedFrom": {
|
|
9540
|
+
"name": "GenesisGridDatasourceElement",
|
|
9541
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9542
|
+
}
|
|
9543
|
+
},
|
|
9544
|
+
{
|
|
9545
|
+
"kind": "field",
|
|
9546
|
+
"name": "rowId",
|
|
9547
|
+
"type": {
|
|
9548
|
+
"text": "string"
|
|
9549
|
+
},
|
|
9550
|
+
"privacy": "protected",
|
|
9551
|
+
"readonly": true,
|
|
9552
|
+
"inheritedFrom": {
|
|
9553
|
+
"name": "GenesisGridDatasourceElement",
|
|
9554
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9555
|
+
}
|
|
9556
|
+
},
|
|
9557
|
+
{
|
|
9558
|
+
"kind": "field",
|
|
9559
|
+
"name": "defaultRowIdByResourceType",
|
|
9560
|
+
"type": {
|
|
9561
|
+
"text": "string"
|
|
9562
|
+
},
|
|
9563
|
+
"privacy": "protected",
|
|
9564
|
+
"readonly": true,
|
|
9565
|
+
"inheritedFrom": {
|
|
9566
|
+
"name": "GenesisGridDatasourceElement",
|
|
9567
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9568
|
+
}
|
|
9569
|
+
},
|
|
9570
|
+
{
|
|
9571
|
+
"kind": "field",
|
|
9572
|
+
"name": "criteriaFromFilters",
|
|
9573
|
+
"type": {
|
|
9574
|
+
"text": "Map<string, string>"
|
|
9575
|
+
},
|
|
9576
|
+
"privacy": "protected",
|
|
9577
|
+
"default": "new Map()",
|
|
9578
|
+
"inheritedFrom": {
|
|
9579
|
+
"name": "GenesisGridDatasourceElement",
|
|
9580
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9581
|
+
}
|
|
9582
|
+
},
|
|
9583
|
+
{
|
|
9584
|
+
"kind": "field",
|
|
9585
|
+
"name": "update",
|
|
9586
|
+
"type": {
|
|
9587
|
+
"text": "BehaviorSubject<Map<string, string>>"
|
|
9588
|
+
},
|
|
9589
|
+
"privacy": "protected",
|
|
9590
|
+
"default": "new BehaviorSubject(new Map())",
|
|
9591
|
+
"inheritedFrom": {
|
|
9592
|
+
"name": "GenesisGridDatasourceElement",
|
|
9593
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9594
|
+
}
|
|
9595
|
+
},
|
|
9596
|
+
{
|
|
9597
|
+
"kind": "method",
|
|
9598
|
+
"name": "datasourceOptions",
|
|
9599
|
+
"privacy": "protected",
|
|
9600
|
+
"return": {
|
|
9601
|
+
"type": {
|
|
9602
|
+
"text": "DatasourceOptions"
|
|
9603
|
+
}
|
|
9604
|
+
},
|
|
9605
|
+
"inheritedFrom": {
|
|
9606
|
+
"name": "GenesisGridDatasourceElement",
|
|
9607
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9608
|
+
}
|
|
9609
|
+
},
|
|
9610
|
+
{
|
|
9611
|
+
"kind": "method",
|
|
9612
|
+
"name": "buildCriteria",
|
|
9613
|
+
"privacy": "private",
|
|
9614
|
+
"return": {
|
|
9615
|
+
"type": {
|
|
9616
|
+
"text": "string"
|
|
9617
|
+
}
|
|
9618
|
+
},
|
|
9619
|
+
"inheritedFrom": {
|
|
9620
|
+
"name": "GenesisGridDatasourceElement",
|
|
9621
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9622
|
+
}
|
|
9623
|
+
},
|
|
9624
|
+
{
|
|
9625
|
+
"kind": "method",
|
|
9626
|
+
"name": "setFilter",
|
|
9627
|
+
"privacy": "public",
|
|
9628
|
+
"parameters": [
|
|
9629
|
+
{
|
|
9630
|
+
"name": "fieldName",
|
|
9631
|
+
"type": {
|
|
9632
|
+
"text": "string"
|
|
9633
|
+
}
|
|
9634
|
+
},
|
|
9635
|
+
{
|
|
9636
|
+
"name": "newFilter",
|
|
9637
|
+
"type": {
|
|
9638
|
+
"text": "string"
|
|
9639
|
+
}
|
|
9640
|
+
}
|
|
9641
|
+
],
|
|
9642
|
+
"inheritedFrom": {
|
|
9643
|
+
"name": "GenesisGridDatasourceElement",
|
|
9644
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9645
|
+
}
|
|
9646
|
+
},
|
|
9647
|
+
{
|
|
9648
|
+
"kind": "method",
|
|
9649
|
+
"name": "removeFilter",
|
|
9650
|
+
"privacy": "public",
|
|
9651
|
+
"parameters": [
|
|
9652
|
+
{
|
|
9653
|
+
"name": "fieldName",
|
|
9654
|
+
"type": {
|
|
9655
|
+
"text": "string"
|
|
9656
|
+
}
|
|
9657
|
+
}
|
|
9658
|
+
],
|
|
9659
|
+
"inheritedFrom": {
|
|
9660
|
+
"name": "GenesisGridDatasourceElement",
|
|
9661
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9662
|
+
}
|
|
9663
|
+
},
|
|
9664
|
+
{
|
|
9665
|
+
"kind": "field",
|
|
9666
|
+
"name": "isRequestServer",
|
|
9667
|
+
"type": {
|
|
9668
|
+
"text": "boolean"
|
|
9669
|
+
},
|
|
9670
|
+
"readonly": true,
|
|
9671
|
+
"inheritedFrom": {
|
|
9672
|
+
"name": "GenesisGridDatasourceElement",
|
|
9673
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9674
|
+
}
|
|
9675
|
+
},
|
|
9676
|
+
{
|
|
9677
|
+
"kind": "method",
|
|
9678
|
+
"name": "datasourceStatusChanged",
|
|
9679
|
+
"parameters": [
|
|
9680
|
+
{
|
|
9387
9681
|
"name": "prev",
|
|
9388
9682
|
"type": {
|
|
9389
9683
|
"text": "DatasourceStatus"
|
|
@@ -9538,6 +9832,24 @@
|
|
|
9538
9832
|
"module": "src/datasource/base.datasource.ts"
|
|
9539
9833
|
}
|
|
9540
9834
|
},
|
|
9835
|
+
{
|
|
9836
|
+
"name": "zero-based-view-number",
|
|
9837
|
+
"type": {
|
|
9838
|
+
"text": "boolean"
|
|
9839
|
+
},
|
|
9840
|
+
"default": "false",
|
|
9841
|
+
"description": "The starting VIEW_NUMBER of the data to be fetched.",
|
|
9842
|
+
"fieldName": "zeroBasedViewNumber"
|
|
9843
|
+
},
|
|
9844
|
+
{
|
|
9845
|
+
"name": "live-updates",
|
|
9846
|
+
"type": {
|
|
9847
|
+
"text": "boolean"
|
|
9848
|
+
},
|
|
9849
|
+
"default": "false",
|
|
9850
|
+
"description": "Enable live updates for the grid.",
|
|
9851
|
+
"fieldName": "liveUpdates"
|
|
9852
|
+
},
|
|
9541
9853
|
{
|
|
9542
9854
|
"name": "criteria",
|
|
9543
9855
|
"type": {
|
|
@@ -9550,166 +9862,1669 @@
|
|
|
9550
9862
|
}
|
|
9551
9863
|
},
|
|
9552
9864
|
{
|
|
9553
|
-
"name": "fields",
|
|
9554
|
-
"type": {
|
|
9555
|
-
"text": "string"
|
|
9865
|
+
"name": "fields",
|
|
9866
|
+
"type": {
|
|
9867
|
+
"text": "string"
|
|
9868
|
+
},
|
|
9869
|
+
"fieldName": "fields",
|
|
9870
|
+
"inheritedFrom": {
|
|
9871
|
+
"name": "GenesisGridDatasourceElement",
|
|
9872
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9873
|
+
}
|
|
9874
|
+
},
|
|
9875
|
+
{
|
|
9876
|
+
"name": "is-snapshot",
|
|
9877
|
+
"type": {
|
|
9878
|
+
"text": "boolean"
|
|
9879
|
+
},
|
|
9880
|
+
"default": "false",
|
|
9881
|
+
"fieldName": "isSnapshot",
|
|
9882
|
+
"inheritedFrom": {
|
|
9883
|
+
"name": "GenesisGridDatasourceElement",
|
|
9884
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9885
|
+
}
|
|
9886
|
+
},
|
|
9887
|
+
{
|
|
9888
|
+
"name": "max-rows",
|
|
9889
|
+
"type": {
|
|
9890
|
+
"text": "number"
|
|
9891
|
+
},
|
|
9892
|
+
"fieldName": "maxRows",
|
|
9893
|
+
"inheritedFrom": {
|
|
9894
|
+
"name": "GenesisGridDatasourceElement",
|
|
9895
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9896
|
+
}
|
|
9897
|
+
},
|
|
9898
|
+
{
|
|
9899
|
+
"name": "max-view",
|
|
9900
|
+
"type": {
|
|
9901
|
+
"text": "number"
|
|
9902
|
+
},
|
|
9903
|
+
"fieldName": "maxView",
|
|
9904
|
+
"inheritedFrom": {
|
|
9905
|
+
"name": "GenesisGridDatasourceElement",
|
|
9906
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9907
|
+
}
|
|
9908
|
+
},
|
|
9909
|
+
{
|
|
9910
|
+
"name": "moving-view",
|
|
9911
|
+
"type": {
|
|
9912
|
+
"text": "boolean"
|
|
9913
|
+
},
|
|
9914
|
+
"default": "false",
|
|
9915
|
+
"fieldName": "movingView",
|
|
9916
|
+
"inheritedFrom": {
|
|
9917
|
+
"name": "GenesisGridDatasourceElement",
|
|
9918
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9919
|
+
}
|
|
9920
|
+
},
|
|
9921
|
+
{
|
|
9922
|
+
"name": "order-by",
|
|
9923
|
+
"type": {
|
|
9924
|
+
"text": "string"
|
|
9925
|
+
},
|
|
9926
|
+
"fieldName": "orderBy",
|
|
9927
|
+
"inheritedFrom": {
|
|
9928
|
+
"name": "GenesisGridDatasourceElement",
|
|
9929
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9930
|
+
}
|
|
9931
|
+
},
|
|
9932
|
+
{
|
|
9933
|
+
"name": "resource-name",
|
|
9934
|
+
"type": {
|
|
9935
|
+
"text": "string"
|
|
9936
|
+
},
|
|
9937
|
+
"fieldName": "resourceName",
|
|
9938
|
+
"inheritedFrom": {
|
|
9939
|
+
"name": "GenesisGridDatasourceElement",
|
|
9940
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9941
|
+
}
|
|
9942
|
+
},
|
|
9943
|
+
{
|
|
9944
|
+
"name": "view-number",
|
|
9945
|
+
"type": {
|
|
9946
|
+
"text": "number"
|
|
9947
|
+
},
|
|
9948
|
+
"fieldName": "viewNumber",
|
|
9949
|
+
"inheritedFrom": {
|
|
9950
|
+
"name": "GenesisGridDatasourceElement",
|
|
9951
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9952
|
+
}
|
|
9953
|
+
},
|
|
9954
|
+
{
|
|
9955
|
+
"name": "polling-interval",
|
|
9956
|
+
"type": {
|
|
9957
|
+
"text": "number"
|
|
9958
|
+
},
|
|
9959
|
+
"fieldName": "pollingInterval",
|
|
9960
|
+
"inheritedFrom": {
|
|
9961
|
+
"name": "GenesisGridDatasourceElement",
|
|
9962
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9963
|
+
}
|
|
9964
|
+
},
|
|
9965
|
+
{
|
|
9966
|
+
"name": "disable-polling",
|
|
9967
|
+
"type": {
|
|
9968
|
+
"text": "boolean"
|
|
9969
|
+
},
|
|
9970
|
+
"default": "false",
|
|
9971
|
+
"fieldName": "disablePolling",
|
|
9972
|
+
"inheritedFrom": {
|
|
9973
|
+
"name": "GenesisGridDatasourceElement",
|
|
9974
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9975
|
+
}
|
|
9976
|
+
},
|
|
9977
|
+
{
|
|
9978
|
+
"name": "request-auto-setup",
|
|
9979
|
+
"type": {
|
|
9980
|
+
"text": "boolean"
|
|
9981
|
+
},
|
|
9982
|
+
"default": "true",
|
|
9983
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
9984
|
+
"fieldName": "requestAutoSetup",
|
|
9985
|
+
"inheritedFrom": {
|
|
9986
|
+
"name": "GenesisGridDatasourceElement",
|
|
9987
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9988
|
+
}
|
|
9989
|
+
},
|
|
9990
|
+
{
|
|
9991
|
+
"name": "row-id",
|
|
9992
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
9993
|
+
"fieldName": "rowIdAttr",
|
|
9994
|
+
"inheritedFrom": {
|
|
9995
|
+
"name": "GenesisGridDatasourceElement",
|
|
9996
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9997
|
+
}
|
|
9998
|
+
}
|
|
9999
|
+
],
|
|
10000
|
+
"mixins": [
|
|
10001
|
+
{
|
|
10002
|
+
"name": "LifecycleMixin",
|
|
10003
|
+
"package": "@genesislcap/foundation-utils"
|
|
10004
|
+
}
|
|
10005
|
+
],
|
|
10006
|
+
"superclass": {
|
|
10007
|
+
"name": "GridProBaseDatasource",
|
|
10008
|
+
"module": "/src/datasource/base.datasource"
|
|
10009
|
+
},
|
|
10010
|
+
"tagName": "grid-pro-server-side-datasource",
|
|
10011
|
+
"customElement": true
|
|
10012
|
+
}
|
|
10013
|
+
],
|
|
10014
|
+
"exports": [
|
|
10015
|
+
{
|
|
10016
|
+
"kind": "js",
|
|
10017
|
+
"name": "GridProServerSideDatasource",
|
|
10018
|
+
"declaration": {
|
|
10019
|
+
"name": "GridProServerSideDatasource",
|
|
10020
|
+
"module": "src/datasource/server-side.datasource.ts"
|
|
10021
|
+
}
|
|
10022
|
+
},
|
|
10023
|
+
{
|
|
10024
|
+
"kind": "custom-element-definition",
|
|
10025
|
+
"name": "grid-pro-server-side-datasource",
|
|
10026
|
+
"declaration": {
|
|
10027
|
+
"name": "GridProServerSideDatasource",
|
|
10028
|
+
"module": "src/datasource/server-side.datasource.ts"
|
|
10029
|
+
}
|
|
10030
|
+
}
|
|
10031
|
+
]
|
|
10032
|
+
},
|
|
10033
|
+
{
|
|
10034
|
+
"kind": "javascript-module",
|
|
10035
|
+
"path": "src/datasource/server-side.grid-definitions.ts",
|
|
10036
|
+
"declarations": [
|
|
10037
|
+
{
|
|
10038
|
+
"kind": "function",
|
|
10039
|
+
"name": "getServerSideFilterParamsByFieldType",
|
|
10040
|
+
"return": {
|
|
10041
|
+
"type": {
|
|
10042
|
+
"text": ""
|
|
10043
|
+
}
|
|
10044
|
+
},
|
|
10045
|
+
"parameters": [
|
|
10046
|
+
{
|
|
10047
|
+
"name": "type",
|
|
10048
|
+
"type": {
|
|
10049
|
+
"text": "string"
|
|
10050
|
+
},
|
|
10051
|
+
"description": "The type of the field/column"
|
|
10052
|
+
}
|
|
10053
|
+
],
|
|
10054
|
+
"description": "Returns the filter params based on the Grid Pro field/column type."
|
|
10055
|
+
}
|
|
10056
|
+
],
|
|
10057
|
+
"exports": [
|
|
10058
|
+
{
|
|
10059
|
+
"kind": "js",
|
|
10060
|
+
"name": "getServerSideFilterParamsByFieldType",
|
|
10061
|
+
"declaration": {
|
|
10062
|
+
"name": "getServerSideFilterParamsByFieldType",
|
|
10063
|
+
"module": "src/datasource/server-side.grid-definitions.ts"
|
|
10064
|
+
}
|
|
10065
|
+
}
|
|
10066
|
+
]
|
|
10067
|
+
},
|
|
10068
|
+
{
|
|
10069
|
+
"kind": "javascript-module",
|
|
10070
|
+
"path": "src/datasource/server-side.resource-base.ts",
|
|
10071
|
+
"declarations": [
|
|
10072
|
+
{
|
|
10073
|
+
"kind": "class",
|
|
10074
|
+
"description": "",
|
|
10075
|
+
"name": "BaseServerSideDatasource",
|
|
10076
|
+
"members": [
|
|
10077
|
+
{
|
|
10078
|
+
"kind": "field",
|
|
10079
|
+
"name": "auth",
|
|
10080
|
+
"type": {
|
|
10081
|
+
"text": "Auth"
|
|
10082
|
+
}
|
|
10083
|
+
},
|
|
10084
|
+
{
|
|
10085
|
+
"kind": "field",
|
|
10086
|
+
"name": "connect",
|
|
10087
|
+
"type": {
|
|
10088
|
+
"text": "Connect"
|
|
10089
|
+
}
|
|
10090
|
+
},
|
|
10091
|
+
{
|
|
10092
|
+
"kind": "field",
|
|
10093
|
+
"name": "uuid",
|
|
10094
|
+
"type": {
|
|
10095
|
+
"text": "UUID"
|
|
10096
|
+
}
|
|
10097
|
+
},
|
|
10098
|
+
{
|
|
10099
|
+
"kind": "field",
|
|
10100
|
+
"name": "rowId",
|
|
10101
|
+
"type": {
|
|
10102
|
+
"text": "string"
|
|
10103
|
+
},
|
|
10104
|
+
"privacy": "protected"
|
|
10105
|
+
},
|
|
10106
|
+
{
|
|
10107
|
+
"kind": "field",
|
|
10108
|
+
"name": "rowData",
|
|
10109
|
+
"type": {
|
|
10110
|
+
"text": "Map<string, any>"
|
|
10111
|
+
},
|
|
10112
|
+
"privacy": "protected",
|
|
10113
|
+
"default": "new Map()"
|
|
10114
|
+
},
|
|
10115
|
+
{
|
|
10116
|
+
"kind": "field",
|
|
10117
|
+
"name": "reloadResourceDataFunc",
|
|
10118
|
+
"type": {
|
|
10119
|
+
"text": "(params: DatasourceOptions) => Promise<void>"
|
|
10120
|
+
}
|
|
10121
|
+
},
|
|
10122
|
+
{
|
|
10123
|
+
"kind": "field",
|
|
10124
|
+
"name": "resourceName",
|
|
10125
|
+
"type": {
|
|
10126
|
+
"text": "string"
|
|
10127
|
+
},
|
|
10128
|
+
"privacy": "protected"
|
|
10129
|
+
},
|
|
10130
|
+
{
|
|
10131
|
+
"kind": "field",
|
|
10132
|
+
"name": "resourceParams",
|
|
10133
|
+
"type": {
|
|
10134
|
+
"text": "any"
|
|
10135
|
+
}
|
|
10136
|
+
},
|
|
10137
|
+
{
|
|
10138
|
+
"kind": "field",
|
|
10139
|
+
"name": "resourceIndexes",
|
|
10140
|
+
"type": {
|
|
10141
|
+
"text": "Map<string, [string]>"
|
|
10142
|
+
},
|
|
10143
|
+
"privacy": "protected"
|
|
10144
|
+
},
|
|
10145
|
+
{
|
|
10146
|
+
"kind": "field",
|
|
10147
|
+
"name": "resourceColDefs",
|
|
10148
|
+
"type": {
|
|
10149
|
+
"text": "MetadataDetail[]"
|
|
10150
|
+
},
|
|
10151
|
+
"privacy": "protected"
|
|
10152
|
+
},
|
|
10153
|
+
{
|
|
10154
|
+
"kind": "field",
|
|
10155
|
+
"name": "maxRows",
|
|
10156
|
+
"type": {
|
|
10157
|
+
"text": "number"
|
|
10158
|
+
},
|
|
10159
|
+
"privacy": "protected"
|
|
10160
|
+
},
|
|
10161
|
+
{
|
|
10162
|
+
"kind": "field",
|
|
10163
|
+
"name": "maxView",
|
|
10164
|
+
"type": {
|
|
10165
|
+
"text": "number"
|
|
10166
|
+
},
|
|
10167
|
+
"privacy": "protected"
|
|
10168
|
+
},
|
|
10169
|
+
{
|
|
10170
|
+
"kind": "field",
|
|
10171
|
+
"name": "pagination",
|
|
10172
|
+
"type": {
|
|
10173
|
+
"text": "boolean"
|
|
10174
|
+
},
|
|
10175
|
+
"privacy": "protected"
|
|
10176
|
+
},
|
|
10177
|
+
{
|
|
10178
|
+
"kind": "field",
|
|
10179
|
+
"name": "zeroBasedViewNumber",
|
|
10180
|
+
"type": {
|
|
10181
|
+
"text": "boolean"
|
|
10182
|
+
},
|
|
10183
|
+
"privacy": "protected"
|
|
10184
|
+
},
|
|
10185
|
+
{
|
|
10186
|
+
"kind": "field",
|
|
10187
|
+
"name": "sourceRef",
|
|
10188
|
+
"type": {
|
|
10189
|
+
"text": "string"
|
|
10190
|
+
}
|
|
10191
|
+
},
|
|
10192
|
+
{
|
|
10193
|
+
"kind": "field",
|
|
10194
|
+
"name": "isNewPageSize",
|
|
10195
|
+
"type": {
|
|
10196
|
+
"text": "boolean"
|
|
10197
|
+
}
|
|
10198
|
+
},
|
|
10199
|
+
{
|
|
10200
|
+
"kind": "field",
|
|
10201
|
+
"name": "lastSuccessRowData",
|
|
10202
|
+
"type": {
|
|
10203
|
+
"text": "LoadSuccessParams"
|
|
10204
|
+
}
|
|
10205
|
+
},
|
|
10206
|
+
{
|
|
10207
|
+
"kind": "field",
|
|
10208
|
+
"name": "moreRows",
|
|
10209
|
+
"type": {
|
|
10210
|
+
"text": "boolean"
|
|
10211
|
+
},
|
|
10212
|
+
"privacy": "protected",
|
|
10213
|
+
"default": "false"
|
|
10214
|
+
},
|
|
10215
|
+
{
|
|
10216
|
+
"kind": "field",
|
|
10217
|
+
"name": "calculatedRowsCount",
|
|
10218
|
+
"type": {
|
|
10219
|
+
"text": "number"
|
|
10220
|
+
},
|
|
10221
|
+
"privacy": "protected",
|
|
10222
|
+
"default": "0"
|
|
10223
|
+
},
|
|
10224
|
+
{
|
|
10225
|
+
"kind": "field",
|
|
10226
|
+
"name": "currentSequenceId",
|
|
10227
|
+
"type": {
|
|
10228
|
+
"text": "null"
|
|
10229
|
+
},
|
|
10230
|
+
"privacy": "protected",
|
|
10231
|
+
"default": "null"
|
|
10232
|
+
},
|
|
10233
|
+
{
|
|
10234
|
+
"kind": "field",
|
|
10235
|
+
"name": "currentFilterModel",
|
|
10236
|
+
"type": {
|
|
10237
|
+
"text": "SetFilterModel"
|
|
10238
|
+
},
|
|
10239
|
+
"privacy": "protected"
|
|
10240
|
+
},
|
|
10241
|
+
{
|
|
10242
|
+
"kind": "field",
|
|
10243
|
+
"name": "originalCriteriaMatch",
|
|
10244
|
+
"type": {
|
|
10245
|
+
"text": "string | string[]"
|
|
10246
|
+
},
|
|
10247
|
+
"privacy": "protected"
|
|
10248
|
+
},
|
|
10249
|
+
{
|
|
10250
|
+
"kind": "field",
|
|
10251
|
+
"name": "currentSortModel",
|
|
10252
|
+
"type": {
|
|
10253
|
+
"text": "SortModelItem[]"
|
|
10254
|
+
},
|
|
10255
|
+
"privacy": "protected"
|
|
10256
|
+
},
|
|
10257
|
+
{
|
|
10258
|
+
"kind": "method",
|
|
10259
|
+
"name": "getRows",
|
|
10260
|
+
"return": {
|
|
10261
|
+
"type": {
|
|
10262
|
+
"text": "void"
|
|
10263
|
+
}
|
|
10264
|
+
},
|
|
10265
|
+
"parameters": [
|
|
10266
|
+
{
|
|
10267
|
+
"name": "params",
|
|
10268
|
+
"type": {
|
|
10269
|
+
"text": "IServerSideGetRowsParams<any, any>"
|
|
10270
|
+
}
|
|
10271
|
+
}
|
|
10272
|
+
]
|
|
10273
|
+
},
|
|
10274
|
+
{
|
|
10275
|
+
"kind": "method",
|
|
10276
|
+
"name": "setupFilteringAndSorting",
|
|
10277
|
+
"privacy": "protected",
|
|
10278
|
+
"parameters": [
|
|
10279
|
+
{
|
|
10280
|
+
"name": "params",
|
|
10281
|
+
"type": {
|
|
10282
|
+
"text": "IServerSideGetRowsParams"
|
|
10283
|
+
}
|
|
10284
|
+
}
|
|
10285
|
+
]
|
|
10286
|
+
},
|
|
10287
|
+
{
|
|
10288
|
+
"kind": "method",
|
|
10289
|
+
"name": "destroy",
|
|
10290
|
+
"return": {
|
|
10291
|
+
"type": {
|
|
10292
|
+
"text": "void"
|
|
10293
|
+
}
|
|
10294
|
+
}
|
|
10295
|
+
},
|
|
10296
|
+
{
|
|
10297
|
+
"kind": "method",
|
|
10298
|
+
"name": "refreshDatasource",
|
|
10299
|
+
"privacy": "protected",
|
|
10300
|
+
"return": {
|
|
10301
|
+
"type": {
|
|
10302
|
+
"text": "Promise<void>"
|
|
10303
|
+
}
|
|
10304
|
+
},
|
|
10305
|
+
"parameters": [
|
|
10306
|
+
{
|
|
10307
|
+
"name": "params",
|
|
10308
|
+
"type": {
|
|
10309
|
+
"text": "IServerSideGetRowsParams"
|
|
10310
|
+
}
|
|
10311
|
+
}
|
|
10312
|
+
]
|
|
10313
|
+
},
|
|
10314
|
+
{
|
|
10315
|
+
"kind": "method",
|
|
10316
|
+
"name": "getOrderByAndToBeSortedColIds",
|
|
10317
|
+
"privacy": "protected",
|
|
10318
|
+
"parameters": [
|
|
10319
|
+
{
|
|
10320
|
+
"name": "map"
|
|
10321
|
+
},
|
|
10322
|
+
{
|
|
10323
|
+
"name": "searchValue"
|
|
10324
|
+
}
|
|
10325
|
+
]
|
|
10326
|
+
},
|
|
10327
|
+
{
|
|
10328
|
+
"kind": "method",
|
|
10329
|
+
"name": "buildCriteriaMatchFromFilters",
|
|
10330
|
+
"privacy": "protected",
|
|
10331
|
+
"return": {
|
|
10332
|
+
"type": {
|
|
10333
|
+
"text": "string"
|
|
10334
|
+
}
|
|
10335
|
+
}
|
|
10336
|
+
},
|
|
10337
|
+
{
|
|
10338
|
+
"kind": "method",
|
|
10339
|
+
"name": "criteriaFromFilters",
|
|
10340
|
+
"privacy": "protected",
|
|
10341
|
+
"return": {
|
|
10342
|
+
"type": {
|
|
10343
|
+
"text": "string[]"
|
|
10344
|
+
}
|
|
10345
|
+
}
|
|
10346
|
+
},
|
|
10347
|
+
{
|
|
10348
|
+
"kind": "method",
|
|
10349
|
+
"name": "getFiltersByType",
|
|
10350
|
+
"privacy": "protected",
|
|
10351
|
+
"parameters": [
|
|
10352
|
+
{
|
|
10353
|
+
"name": "filterType",
|
|
10354
|
+
"type": {
|
|
10355
|
+
"text": "string"
|
|
10356
|
+
}
|
|
10357
|
+
}
|
|
10358
|
+
]
|
|
10359
|
+
},
|
|
10360
|
+
{
|
|
10361
|
+
"kind": "method",
|
|
10362
|
+
"name": "getPageNumber",
|
|
10363
|
+
"privacy": "protected",
|
|
10364
|
+
"parameters": [
|
|
10365
|
+
{
|
|
10366
|
+
"name": "start",
|
|
10367
|
+
"type": {
|
|
10368
|
+
"text": "number"
|
|
10369
|
+
}
|
|
10370
|
+
},
|
|
10371
|
+
{
|
|
10372
|
+
"name": "recordsPerPage",
|
|
10373
|
+
"type": {
|
|
10374
|
+
"text": "number"
|
|
10375
|
+
}
|
|
10376
|
+
},
|
|
10377
|
+
{
|
|
10378
|
+
"name": "totalRecords",
|
|
10379
|
+
"type": {
|
|
10380
|
+
"text": "number"
|
|
10381
|
+
}
|
|
10382
|
+
},
|
|
10383
|
+
{
|
|
10384
|
+
"name": "zeroBasedViewNumber",
|
|
10385
|
+
"default": "true"
|
|
10386
|
+
}
|
|
10387
|
+
]
|
|
10388
|
+
},
|
|
10389
|
+
{
|
|
10390
|
+
"kind": "method",
|
|
10391
|
+
"name": "getCorrectRowCount",
|
|
10392
|
+
"privacy": "protected",
|
|
10393
|
+
"parameters": [
|
|
10394
|
+
{
|
|
10395
|
+
"name": "params",
|
|
10396
|
+
"type": {
|
|
10397
|
+
"text": "IServerSideGetRowsParams<any, any>"
|
|
10398
|
+
}
|
|
10399
|
+
}
|
|
10400
|
+
]
|
|
10401
|
+
},
|
|
10402
|
+
{
|
|
10403
|
+
"kind": "field",
|
|
10404
|
+
"name": "isNotFirstViewNumber",
|
|
10405
|
+
"type": {
|
|
10406
|
+
"text": "boolean"
|
|
10407
|
+
},
|
|
10408
|
+
"privacy": "protected",
|
|
10409
|
+
"readonly": true
|
|
10410
|
+
}
|
|
10411
|
+
]
|
|
10412
|
+
}
|
|
10413
|
+
],
|
|
10414
|
+
"exports": [
|
|
10415
|
+
{
|
|
10416
|
+
"kind": "js",
|
|
10417
|
+
"name": "BaseServerSideDatasource",
|
|
10418
|
+
"declaration": {
|
|
10419
|
+
"name": "BaseServerSideDatasource",
|
|
10420
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10421
|
+
}
|
|
10422
|
+
}
|
|
10423
|
+
]
|
|
10424
|
+
},
|
|
10425
|
+
{
|
|
10426
|
+
"kind": "javascript-module",
|
|
10427
|
+
"path": "src/datasource/server-side.resource-dataserver.ts",
|
|
10428
|
+
"declarations": [
|
|
10429
|
+
{
|
|
10430
|
+
"kind": "class",
|
|
10431
|
+
"description": "The DATASERVER IServerSideDatasource implementation, used for SSRM (Server-Side Row Model) in the grid.",
|
|
10432
|
+
"name": "DataserverServerSideDatasource",
|
|
10433
|
+
"members": [
|
|
10434
|
+
{
|
|
10435
|
+
"kind": "field",
|
|
10436
|
+
"name": "dataserverStream",
|
|
10437
|
+
"type": {
|
|
10438
|
+
"text": "SocketObservable<FilteredDataServerResult>"
|
|
10439
|
+
}
|
|
10440
|
+
},
|
|
10441
|
+
{
|
|
10442
|
+
"kind": "field",
|
|
10443
|
+
"name": "dataserverStreamSubscription",
|
|
10444
|
+
"type": {
|
|
10445
|
+
"text": "SocketSubscription"
|
|
10446
|
+
}
|
|
10447
|
+
},
|
|
10448
|
+
{
|
|
10449
|
+
"kind": "field",
|
|
10450
|
+
"name": "createDataserverStreamFunc",
|
|
10451
|
+
"type": {
|
|
10452
|
+
"text": "(\n existingParams?: any,\n ) => Promise<SocketObservable<FilteredDataServerResult>>"
|
|
10453
|
+
}
|
|
10454
|
+
},
|
|
10455
|
+
{
|
|
10456
|
+
"kind": "method",
|
|
10457
|
+
"name": "refreshDatasource",
|
|
10458
|
+
"privacy": "protected",
|
|
10459
|
+
"return": {
|
|
10460
|
+
"type": {
|
|
10461
|
+
"text": "Promise<void>"
|
|
10462
|
+
}
|
|
10463
|
+
},
|
|
10464
|
+
"parameters": [
|
|
10465
|
+
{
|
|
10466
|
+
"name": "params",
|
|
10467
|
+
"type": {
|
|
10468
|
+
"text": "IServerSideGetRowsParams"
|
|
10469
|
+
}
|
|
10470
|
+
}
|
|
10471
|
+
],
|
|
10472
|
+
"inheritedFrom": {
|
|
10473
|
+
"name": "BaseServerSideDatasource",
|
|
10474
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10475
|
+
}
|
|
10476
|
+
},
|
|
10477
|
+
{
|
|
10478
|
+
"kind": "method",
|
|
10479
|
+
"name": "getRows",
|
|
10480
|
+
"return": {
|
|
10481
|
+
"type": {
|
|
10482
|
+
"text": "void"
|
|
10483
|
+
}
|
|
10484
|
+
},
|
|
10485
|
+
"parameters": [
|
|
10486
|
+
{
|
|
10487
|
+
"name": "params",
|
|
10488
|
+
"type": {
|
|
10489
|
+
"text": "IServerSideGetRowsParams"
|
|
10490
|
+
}
|
|
10491
|
+
}
|
|
10492
|
+
],
|
|
10493
|
+
"inheritedFrom": {
|
|
10494
|
+
"name": "BaseServerSideDatasource",
|
|
10495
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10496
|
+
}
|
|
10497
|
+
},
|
|
10498
|
+
{
|
|
10499
|
+
"kind": "method",
|
|
10500
|
+
"name": "applyServerSideData",
|
|
10501
|
+
"privacy": "private",
|
|
10502
|
+
"parameters": [
|
|
10503
|
+
{
|
|
10504
|
+
"name": "params",
|
|
10505
|
+
"type": {
|
|
10506
|
+
"text": "IServerSideGetRowsParams"
|
|
10507
|
+
}
|
|
10508
|
+
},
|
|
10509
|
+
{
|
|
10510
|
+
"name": "result",
|
|
10511
|
+
"type": {
|
|
10512
|
+
"text": "RawDataServerResult"
|
|
10513
|
+
}
|
|
10514
|
+
}
|
|
10515
|
+
]
|
|
10516
|
+
},
|
|
10517
|
+
{
|
|
10518
|
+
"kind": "method",
|
|
10519
|
+
"name": "destroy",
|
|
10520
|
+
"return": {
|
|
10521
|
+
"type": {
|
|
10522
|
+
"text": "void"
|
|
10523
|
+
}
|
|
10524
|
+
},
|
|
10525
|
+
"inheritedFrom": {
|
|
10526
|
+
"name": "BaseServerSideDatasource",
|
|
10527
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10528
|
+
}
|
|
10529
|
+
},
|
|
10530
|
+
{
|
|
10531
|
+
"kind": "method",
|
|
10532
|
+
"name": "handleCurrentStreamLoad",
|
|
10533
|
+
"privacy": "private",
|
|
10534
|
+
"return": {
|
|
10535
|
+
"type": {
|
|
10536
|
+
"text": "any[]"
|
|
10537
|
+
}
|
|
10538
|
+
},
|
|
10539
|
+
"parameters": [
|
|
10540
|
+
{
|
|
10541
|
+
"name": "result",
|
|
10542
|
+
"type": {
|
|
10543
|
+
"text": "FilteredDataServerResult"
|
|
10544
|
+
}
|
|
10545
|
+
}
|
|
10546
|
+
]
|
|
10547
|
+
},
|
|
10548
|
+
{
|
|
10549
|
+
"kind": "field",
|
|
10550
|
+
"name": "auth",
|
|
10551
|
+
"type": {
|
|
10552
|
+
"text": "Auth"
|
|
10553
|
+
},
|
|
10554
|
+
"inheritedFrom": {
|
|
10555
|
+
"name": "BaseServerSideDatasource",
|
|
10556
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10557
|
+
}
|
|
10558
|
+
},
|
|
10559
|
+
{
|
|
10560
|
+
"kind": "field",
|
|
10561
|
+
"name": "connect",
|
|
10562
|
+
"type": {
|
|
10563
|
+
"text": "Connect"
|
|
10564
|
+
},
|
|
10565
|
+
"inheritedFrom": {
|
|
10566
|
+
"name": "BaseServerSideDatasource",
|
|
10567
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10568
|
+
}
|
|
10569
|
+
},
|
|
10570
|
+
{
|
|
10571
|
+
"kind": "field",
|
|
10572
|
+
"name": "uuid",
|
|
10573
|
+
"type": {
|
|
10574
|
+
"text": "UUID"
|
|
10575
|
+
},
|
|
10576
|
+
"inheritedFrom": {
|
|
10577
|
+
"name": "BaseServerSideDatasource",
|
|
10578
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10579
|
+
}
|
|
10580
|
+
},
|
|
10581
|
+
{
|
|
10582
|
+
"kind": "field",
|
|
10583
|
+
"name": "rowId",
|
|
10584
|
+
"type": {
|
|
10585
|
+
"text": "string"
|
|
10586
|
+
},
|
|
10587
|
+
"privacy": "protected",
|
|
10588
|
+
"inheritedFrom": {
|
|
10589
|
+
"name": "BaseServerSideDatasource",
|
|
10590
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10591
|
+
}
|
|
10592
|
+
},
|
|
10593
|
+
{
|
|
10594
|
+
"kind": "field",
|
|
10595
|
+
"name": "rowData",
|
|
10596
|
+
"type": {
|
|
10597
|
+
"text": "Map<string, any>"
|
|
10598
|
+
},
|
|
10599
|
+
"privacy": "protected",
|
|
10600
|
+
"default": "new Map()",
|
|
10601
|
+
"inheritedFrom": {
|
|
10602
|
+
"name": "BaseServerSideDatasource",
|
|
10603
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10604
|
+
}
|
|
10605
|
+
},
|
|
10606
|
+
{
|
|
10607
|
+
"kind": "field",
|
|
10608
|
+
"name": "reloadResourceDataFunc",
|
|
10609
|
+
"type": {
|
|
10610
|
+
"text": "(params: DatasourceOptions) => Promise<void>"
|
|
10611
|
+
},
|
|
10612
|
+
"inheritedFrom": {
|
|
10613
|
+
"name": "BaseServerSideDatasource",
|
|
10614
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10615
|
+
}
|
|
10616
|
+
},
|
|
10617
|
+
{
|
|
10618
|
+
"kind": "field",
|
|
10619
|
+
"name": "resourceName",
|
|
10620
|
+
"type": {
|
|
10621
|
+
"text": "string"
|
|
10622
|
+
},
|
|
10623
|
+
"privacy": "protected",
|
|
10624
|
+
"inheritedFrom": {
|
|
10625
|
+
"name": "BaseServerSideDatasource",
|
|
10626
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10627
|
+
}
|
|
10628
|
+
},
|
|
10629
|
+
{
|
|
10630
|
+
"kind": "field",
|
|
10631
|
+
"name": "resourceParams",
|
|
10632
|
+
"type": {
|
|
10633
|
+
"text": "any"
|
|
10634
|
+
},
|
|
10635
|
+
"inheritedFrom": {
|
|
10636
|
+
"name": "BaseServerSideDatasource",
|
|
10637
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10638
|
+
}
|
|
10639
|
+
},
|
|
10640
|
+
{
|
|
10641
|
+
"kind": "field",
|
|
10642
|
+
"name": "resourceIndexes",
|
|
10643
|
+
"type": {
|
|
10644
|
+
"text": "Map<string, [string]>"
|
|
10645
|
+
},
|
|
10646
|
+
"privacy": "protected",
|
|
10647
|
+
"inheritedFrom": {
|
|
10648
|
+
"name": "BaseServerSideDatasource",
|
|
10649
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10650
|
+
}
|
|
10651
|
+
},
|
|
10652
|
+
{
|
|
10653
|
+
"kind": "field",
|
|
10654
|
+
"name": "resourceColDefs",
|
|
10655
|
+
"type": {
|
|
10656
|
+
"text": "MetadataDetail[]"
|
|
10657
|
+
},
|
|
10658
|
+
"privacy": "protected",
|
|
10659
|
+
"inheritedFrom": {
|
|
10660
|
+
"name": "BaseServerSideDatasource",
|
|
10661
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10662
|
+
}
|
|
10663
|
+
},
|
|
10664
|
+
{
|
|
10665
|
+
"kind": "field",
|
|
10666
|
+
"name": "maxRows",
|
|
10667
|
+
"type": {
|
|
10668
|
+
"text": "number"
|
|
10669
|
+
},
|
|
10670
|
+
"privacy": "protected",
|
|
10671
|
+
"inheritedFrom": {
|
|
10672
|
+
"name": "BaseServerSideDatasource",
|
|
10673
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10674
|
+
}
|
|
10675
|
+
},
|
|
10676
|
+
{
|
|
10677
|
+
"kind": "field",
|
|
10678
|
+
"name": "maxView",
|
|
10679
|
+
"type": {
|
|
10680
|
+
"text": "number"
|
|
10681
|
+
},
|
|
10682
|
+
"privacy": "protected",
|
|
10683
|
+
"inheritedFrom": {
|
|
10684
|
+
"name": "BaseServerSideDatasource",
|
|
10685
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10686
|
+
}
|
|
10687
|
+
},
|
|
10688
|
+
{
|
|
10689
|
+
"kind": "field",
|
|
10690
|
+
"name": "pagination",
|
|
10691
|
+
"type": {
|
|
10692
|
+
"text": "boolean"
|
|
10693
|
+
},
|
|
10694
|
+
"privacy": "protected",
|
|
10695
|
+
"inheritedFrom": {
|
|
10696
|
+
"name": "BaseServerSideDatasource",
|
|
10697
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10698
|
+
}
|
|
10699
|
+
},
|
|
10700
|
+
{
|
|
10701
|
+
"kind": "field",
|
|
10702
|
+
"name": "zeroBasedViewNumber",
|
|
10703
|
+
"type": {
|
|
10704
|
+
"text": "boolean"
|
|
10705
|
+
},
|
|
10706
|
+
"privacy": "protected",
|
|
10707
|
+
"inheritedFrom": {
|
|
10708
|
+
"name": "BaseServerSideDatasource",
|
|
10709
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10710
|
+
}
|
|
10711
|
+
},
|
|
10712
|
+
{
|
|
10713
|
+
"kind": "field",
|
|
10714
|
+
"name": "sourceRef",
|
|
10715
|
+
"type": {
|
|
10716
|
+
"text": "string"
|
|
10717
|
+
},
|
|
10718
|
+
"inheritedFrom": {
|
|
10719
|
+
"name": "BaseServerSideDatasource",
|
|
10720
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10721
|
+
}
|
|
10722
|
+
},
|
|
10723
|
+
{
|
|
10724
|
+
"kind": "field",
|
|
10725
|
+
"name": "isNewPageSize",
|
|
10726
|
+
"type": {
|
|
10727
|
+
"text": "boolean"
|
|
10728
|
+
},
|
|
10729
|
+
"inheritedFrom": {
|
|
10730
|
+
"name": "BaseServerSideDatasource",
|
|
10731
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10732
|
+
}
|
|
10733
|
+
},
|
|
10734
|
+
{
|
|
10735
|
+
"kind": "field",
|
|
10736
|
+
"name": "lastSuccessRowData",
|
|
10737
|
+
"type": {
|
|
10738
|
+
"text": "LoadSuccessParams"
|
|
10739
|
+
},
|
|
10740
|
+
"inheritedFrom": {
|
|
10741
|
+
"name": "BaseServerSideDatasource",
|
|
10742
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10743
|
+
}
|
|
10744
|
+
},
|
|
10745
|
+
{
|
|
10746
|
+
"kind": "field",
|
|
10747
|
+
"name": "moreRows",
|
|
10748
|
+
"type": {
|
|
10749
|
+
"text": "boolean"
|
|
10750
|
+
},
|
|
10751
|
+
"privacy": "protected",
|
|
10752
|
+
"default": "false",
|
|
10753
|
+
"inheritedFrom": {
|
|
10754
|
+
"name": "BaseServerSideDatasource",
|
|
10755
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10756
|
+
}
|
|
10757
|
+
},
|
|
10758
|
+
{
|
|
10759
|
+
"kind": "field",
|
|
10760
|
+
"name": "calculatedRowsCount",
|
|
10761
|
+
"type": {
|
|
10762
|
+
"text": "number"
|
|
10763
|
+
},
|
|
10764
|
+
"privacy": "protected",
|
|
10765
|
+
"default": "0",
|
|
10766
|
+
"inheritedFrom": {
|
|
10767
|
+
"name": "BaseServerSideDatasource",
|
|
10768
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10769
|
+
}
|
|
10770
|
+
},
|
|
10771
|
+
{
|
|
10772
|
+
"kind": "field",
|
|
10773
|
+
"name": "currentSequenceId",
|
|
10774
|
+
"type": {
|
|
10775
|
+
"text": "null"
|
|
10776
|
+
},
|
|
10777
|
+
"privacy": "protected",
|
|
10778
|
+
"default": "null",
|
|
10779
|
+
"inheritedFrom": {
|
|
10780
|
+
"name": "BaseServerSideDatasource",
|
|
10781
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10782
|
+
}
|
|
10783
|
+
},
|
|
10784
|
+
{
|
|
10785
|
+
"kind": "field",
|
|
10786
|
+
"name": "currentFilterModel",
|
|
10787
|
+
"type": {
|
|
10788
|
+
"text": "SetFilterModel"
|
|
10789
|
+
},
|
|
10790
|
+
"privacy": "protected",
|
|
10791
|
+
"inheritedFrom": {
|
|
10792
|
+
"name": "BaseServerSideDatasource",
|
|
10793
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10794
|
+
}
|
|
10795
|
+
},
|
|
10796
|
+
{
|
|
10797
|
+
"kind": "field",
|
|
10798
|
+
"name": "originalCriteriaMatch",
|
|
10799
|
+
"type": {
|
|
10800
|
+
"text": "string | string[]"
|
|
10801
|
+
},
|
|
10802
|
+
"privacy": "protected",
|
|
10803
|
+
"inheritedFrom": {
|
|
10804
|
+
"name": "BaseServerSideDatasource",
|
|
10805
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10806
|
+
}
|
|
10807
|
+
},
|
|
10808
|
+
{
|
|
10809
|
+
"kind": "field",
|
|
10810
|
+
"name": "currentSortModel",
|
|
10811
|
+
"type": {
|
|
10812
|
+
"text": "SortModelItem[]"
|
|
10813
|
+
},
|
|
10814
|
+
"privacy": "protected",
|
|
10815
|
+
"inheritedFrom": {
|
|
10816
|
+
"name": "BaseServerSideDatasource",
|
|
10817
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10818
|
+
}
|
|
10819
|
+
},
|
|
10820
|
+
{
|
|
10821
|
+
"kind": "method",
|
|
10822
|
+
"name": "setupFilteringAndSorting",
|
|
10823
|
+
"privacy": "protected",
|
|
10824
|
+
"parameters": [
|
|
10825
|
+
{
|
|
10826
|
+
"name": "params",
|
|
10827
|
+
"type": {
|
|
10828
|
+
"text": "IServerSideGetRowsParams"
|
|
10829
|
+
}
|
|
10830
|
+
}
|
|
10831
|
+
],
|
|
10832
|
+
"inheritedFrom": {
|
|
10833
|
+
"name": "BaseServerSideDatasource",
|
|
10834
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10835
|
+
}
|
|
10836
|
+
},
|
|
10837
|
+
{
|
|
10838
|
+
"kind": "method",
|
|
10839
|
+
"name": "getOrderByAndToBeSortedColIds",
|
|
10840
|
+
"privacy": "protected",
|
|
10841
|
+
"parameters": [
|
|
10842
|
+
{
|
|
10843
|
+
"name": "map"
|
|
10844
|
+
},
|
|
10845
|
+
{
|
|
10846
|
+
"name": "searchValue"
|
|
10847
|
+
}
|
|
10848
|
+
],
|
|
10849
|
+
"inheritedFrom": {
|
|
10850
|
+
"name": "BaseServerSideDatasource",
|
|
10851
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10852
|
+
}
|
|
10853
|
+
},
|
|
10854
|
+
{
|
|
10855
|
+
"kind": "method",
|
|
10856
|
+
"name": "buildCriteriaMatchFromFilters",
|
|
10857
|
+
"privacy": "protected",
|
|
10858
|
+
"return": {
|
|
10859
|
+
"type": {
|
|
10860
|
+
"text": "string"
|
|
10861
|
+
}
|
|
10862
|
+
},
|
|
10863
|
+
"inheritedFrom": {
|
|
10864
|
+
"name": "BaseServerSideDatasource",
|
|
10865
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10866
|
+
}
|
|
10867
|
+
},
|
|
10868
|
+
{
|
|
10869
|
+
"kind": "method",
|
|
10870
|
+
"name": "criteriaFromFilters",
|
|
10871
|
+
"privacy": "protected",
|
|
10872
|
+
"return": {
|
|
10873
|
+
"type": {
|
|
10874
|
+
"text": "string[]"
|
|
10875
|
+
}
|
|
10876
|
+
},
|
|
10877
|
+
"inheritedFrom": {
|
|
10878
|
+
"name": "BaseServerSideDatasource",
|
|
10879
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10880
|
+
}
|
|
10881
|
+
},
|
|
10882
|
+
{
|
|
10883
|
+
"kind": "method",
|
|
10884
|
+
"name": "getFiltersByType",
|
|
10885
|
+
"privacy": "protected",
|
|
10886
|
+
"parameters": [
|
|
10887
|
+
{
|
|
10888
|
+
"name": "filterType",
|
|
10889
|
+
"type": {
|
|
10890
|
+
"text": "string"
|
|
10891
|
+
}
|
|
10892
|
+
}
|
|
10893
|
+
],
|
|
10894
|
+
"inheritedFrom": {
|
|
10895
|
+
"name": "BaseServerSideDatasource",
|
|
10896
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10897
|
+
}
|
|
10898
|
+
},
|
|
10899
|
+
{
|
|
10900
|
+
"kind": "method",
|
|
10901
|
+
"name": "getPageNumber",
|
|
10902
|
+
"privacy": "protected",
|
|
10903
|
+
"parameters": [
|
|
10904
|
+
{
|
|
10905
|
+
"name": "start",
|
|
10906
|
+
"type": {
|
|
10907
|
+
"text": "number"
|
|
10908
|
+
}
|
|
10909
|
+
},
|
|
10910
|
+
{
|
|
10911
|
+
"name": "recordsPerPage",
|
|
10912
|
+
"type": {
|
|
10913
|
+
"text": "number"
|
|
10914
|
+
}
|
|
10915
|
+
},
|
|
10916
|
+
{
|
|
10917
|
+
"name": "totalRecords",
|
|
10918
|
+
"type": {
|
|
10919
|
+
"text": "number"
|
|
10920
|
+
}
|
|
10921
|
+
},
|
|
10922
|
+
{
|
|
10923
|
+
"name": "zeroBasedViewNumber",
|
|
10924
|
+
"default": "true"
|
|
10925
|
+
}
|
|
10926
|
+
],
|
|
10927
|
+
"inheritedFrom": {
|
|
10928
|
+
"name": "BaseServerSideDatasource",
|
|
10929
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10930
|
+
}
|
|
10931
|
+
},
|
|
10932
|
+
{
|
|
10933
|
+
"kind": "method",
|
|
10934
|
+
"name": "getCorrectRowCount",
|
|
10935
|
+
"privacy": "protected",
|
|
10936
|
+
"parameters": [
|
|
10937
|
+
{
|
|
10938
|
+
"name": "params",
|
|
10939
|
+
"type": {
|
|
10940
|
+
"text": "IServerSideGetRowsParams<any, any>"
|
|
10941
|
+
}
|
|
10942
|
+
}
|
|
10943
|
+
],
|
|
10944
|
+
"inheritedFrom": {
|
|
10945
|
+
"name": "BaseServerSideDatasource",
|
|
10946
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10947
|
+
}
|
|
10948
|
+
},
|
|
10949
|
+
{
|
|
10950
|
+
"kind": "field",
|
|
10951
|
+
"name": "isNotFirstViewNumber",
|
|
10952
|
+
"type": {
|
|
10953
|
+
"text": "boolean"
|
|
10954
|
+
},
|
|
10955
|
+
"privacy": "protected",
|
|
10956
|
+
"readonly": true,
|
|
10957
|
+
"inheritedFrom": {
|
|
10958
|
+
"name": "BaseServerSideDatasource",
|
|
10959
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
10960
|
+
}
|
|
10961
|
+
}
|
|
10962
|
+
],
|
|
10963
|
+
"superclass": {
|
|
10964
|
+
"name": "BaseServerSideDatasource",
|
|
10965
|
+
"module": "/src/datasource/server-side.resource-base"
|
|
10966
|
+
}
|
|
10967
|
+
}
|
|
10968
|
+
],
|
|
10969
|
+
"exports": [
|
|
10970
|
+
{
|
|
10971
|
+
"kind": "js",
|
|
10972
|
+
"name": "DataserverServerSideDatasource",
|
|
10973
|
+
"declaration": {
|
|
10974
|
+
"name": "DataserverServerSideDatasource",
|
|
10975
|
+
"module": "src/datasource/server-side.resource-dataserver.ts"
|
|
10976
|
+
}
|
|
10977
|
+
}
|
|
10978
|
+
]
|
|
10979
|
+
},
|
|
10980
|
+
{
|
|
10981
|
+
"kind": "javascript-module",
|
|
10982
|
+
"path": "src/datasource/server-side.resource-reqrep.ts",
|
|
10983
|
+
"declarations": [
|
|
10984
|
+
{
|
|
10985
|
+
"kind": "class",
|
|
10986
|
+
"description": "The REQUEST_SERVER IServerSideDatasource implementation, used for SSRM (Server-Side Row Model) in the grid.",
|
|
10987
|
+
"name": "ReqRepServerSideDatasource",
|
|
10988
|
+
"members": [
|
|
10989
|
+
{
|
|
10990
|
+
"kind": "field",
|
|
10991
|
+
"name": "createReqRepRequestFunc",
|
|
10992
|
+
"type": {
|
|
10993
|
+
"text": "(existingParams?: any) => Promise<RequestServerResult>"
|
|
10994
|
+
}
|
|
10995
|
+
},
|
|
10996
|
+
{
|
|
10997
|
+
"kind": "method",
|
|
10998
|
+
"name": "getRows",
|
|
10999
|
+
"return": {
|
|
11000
|
+
"type": {
|
|
11001
|
+
"text": "void"
|
|
11002
|
+
}
|
|
11003
|
+
},
|
|
11004
|
+
"parameters": [
|
|
11005
|
+
{
|
|
11006
|
+
"name": "params",
|
|
11007
|
+
"type": {
|
|
11008
|
+
"text": "IServerSideGetRowsParams"
|
|
11009
|
+
}
|
|
11010
|
+
}
|
|
11011
|
+
],
|
|
11012
|
+
"inheritedFrom": {
|
|
11013
|
+
"name": "BaseServerSideDatasource",
|
|
11014
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11015
|
+
}
|
|
11016
|
+
},
|
|
11017
|
+
{
|
|
11018
|
+
"kind": "method",
|
|
11019
|
+
"name": "applyServerSideData",
|
|
11020
|
+
"privacy": "private",
|
|
11021
|
+
"parameters": [
|
|
11022
|
+
{
|
|
11023
|
+
"name": "params",
|
|
11024
|
+
"type": {
|
|
11025
|
+
"text": "IServerSideGetRowsParams"
|
|
11026
|
+
}
|
|
11027
|
+
},
|
|
11028
|
+
{
|
|
11029
|
+
"name": "result",
|
|
11030
|
+
"type": {
|
|
11031
|
+
"text": "RequestServerResult"
|
|
11032
|
+
}
|
|
11033
|
+
},
|
|
11034
|
+
{
|
|
11035
|
+
"name": "isLastView",
|
|
11036
|
+
"type": {
|
|
11037
|
+
"text": "boolean"
|
|
11038
|
+
}
|
|
11039
|
+
}
|
|
11040
|
+
]
|
|
11041
|
+
},
|
|
11042
|
+
{
|
|
11043
|
+
"kind": "method",
|
|
11044
|
+
"name": "getCorrectRowCount",
|
|
11045
|
+
"privacy": "protected",
|
|
11046
|
+
"parameters": [
|
|
11047
|
+
{
|
|
11048
|
+
"name": "params",
|
|
11049
|
+
"type": {
|
|
11050
|
+
"text": "IServerSideGetRowsParams"
|
|
11051
|
+
}
|
|
11052
|
+
}
|
|
11053
|
+
],
|
|
11054
|
+
"return": {
|
|
11055
|
+
"type": {
|
|
11056
|
+
"text": "number"
|
|
11057
|
+
}
|
|
11058
|
+
},
|
|
11059
|
+
"inheritedFrom": {
|
|
11060
|
+
"name": "BaseServerSideDatasource",
|
|
11061
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11062
|
+
}
|
|
11063
|
+
},
|
|
11064
|
+
{
|
|
11065
|
+
"kind": "method",
|
|
11066
|
+
"name": "handleCurrentStreamLoad",
|
|
11067
|
+
"privacy": "private",
|
|
11068
|
+
"return": {
|
|
11069
|
+
"type": {
|
|
11070
|
+
"text": "any[]"
|
|
11071
|
+
}
|
|
11072
|
+
},
|
|
11073
|
+
"parameters": [
|
|
11074
|
+
{
|
|
11075
|
+
"name": "reply",
|
|
11076
|
+
"type": {
|
|
11077
|
+
"text": "any[]"
|
|
11078
|
+
}
|
|
11079
|
+
}
|
|
11080
|
+
]
|
|
11081
|
+
},
|
|
11082
|
+
{
|
|
11083
|
+
"kind": "field",
|
|
11084
|
+
"name": "auth",
|
|
11085
|
+
"type": {
|
|
11086
|
+
"text": "Auth"
|
|
11087
|
+
},
|
|
11088
|
+
"inheritedFrom": {
|
|
11089
|
+
"name": "BaseServerSideDatasource",
|
|
11090
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11091
|
+
}
|
|
11092
|
+
},
|
|
11093
|
+
{
|
|
11094
|
+
"kind": "field",
|
|
11095
|
+
"name": "connect",
|
|
11096
|
+
"type": {
|
|
11097
|
+
"text": "Connect"
|
|
11098
|
+
},
|
|
11099
|
+
"inheritedFrom": {
|
|
11100
|
+
"name": "BaseServerSideDatasource",
|
|
11101
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11102
|
+
}
|
|
11103
|
+
},
|
|
11104
|
+
{
|
|
11105
|
+
"kind": "field",
|
|
11106
|
+
"name": "uuid",
|
|
11107
|
+
"type": {
|
|
11108
|
+
"text": "UUID"
|
|
11109
|
+
},
|
|
11110
|
+
"inheritedFrom": {
|
|
11111
|
+
"name": "BaseServerSideDatasource",
|
|
11112
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11113
|
+
}
|
|
11114
|
+
},
|
|
11115
|
+
{
|
|
11116
|
+
"kind": "field",
|
|
11117
|
+
"name": "rowId",
|
|
11118
|
+
"type": {
|
|
11119
|
+
"text": "string"
|
|
11120
|
+
},
|
|
11121
|
+
"privacy": "protected",
|
|
11122
|
+
"inheritedFrom": {
|
|
11123
|
+
"name": "BaseServerSideDatasource",
|
|
11124
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11125
|
+
}
|
|
11126
|
+
},
|
|
11127
|
+
{
|
|
11128
|
+
"kind": "field",
|
|
11129
|
+
"name": "rowData",
|
|
11130
|
+
"type": {
|
|
11131
|
+
"text": "Map<string, any>"
|
|
11132
|
+
},
|
|
11133
|
+
"privacy": "protected",
|
|
11134
|
+
"default": "new Map()",
|
|
11135
|
+
"inheritedFrom": {
|
|
11136
|
+
"name": "BaseServerSideDatasource",
|
|
11137
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11138
|
+
}
|
|
11139
|
+
},
|
|
11140
|
+
{
|
|
11141
|
+
"kind": "field",
|
|
11142
|
+
"name": "reloadResourceDataFunc",
|
|
11143
|
+
"type": {
|
|
11144
|
+
"text": "(params: DatasourceOptions) => Promise<void>"
|
|
11145
|
+
},
|
|
11146
|
+
"inheritedFrom": {
|
|
11147
|
+
"name": "BaseServerSideDatasource",
|
|
11148
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11149
|
+
}
|
|
11150
|
+
},
|
|
11151
|
+
{
|
|
11152
|
+
"kind": "field",
|
|
11153
|
+
"name": "resourceName",
|
|
11154
|
+
"type": {
|
|
11155
|
+
"text": "string"
|
|
11156
|
+
},
|
|
11157
|
+
"privacy": "protected",
|
|
11158
|
+
"inheritedFrom": {
|
|
11159
|
+
"name": "BaseServerSideDatasource",
|
|
11160
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11161
|
+
}
|
|
11162
|
+
},
|
|
11163
|
+
{
|
|
11164
|
+
"kind": "field",
|
|
11165
|
+
"name": "resourceParams",
|
|
11166
|
+
"type": {
|
|
11167
|
+
"text": "any"
|
|
11168
|
+
},
|
|
11169
|
+
"inheritedFrom": {
|
|
11170
|
+
"name": "BaseServerSideDatasource",
|
|
11171
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11172
|
+
}
|
|
11173
|
+
},
|
|
11174
|
+
{
|
|
11175
|
+
"kind": "field",
|
|
11176
|
+
"name": "resourceIndexes",
|
|
11177
|
+
"type": {
|
|
11178
|
+
"text": "Map<string, [string]>"
|
|
11179
|
+
},
|
|
11180
|
+
"privacy": "protected",
|
|
11181
|
+
"inheritedFrom": {
|
|
11182
|
+
"name": "BaseServerSideDatasource",
|
|
11183
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11184
|
+
}
|
|
11185
|
+
},
|
|
11186
|
+
{
|
|
11187
|
+
"kind": "field",
|
|
11188
|
+
"name": "resourceColDefs",
|
|
11189
|
+
"type": {
|
|
11190
|
+
"text": "MetadataDetail[]"
|
|
11191
|
+
},
|
|
11192
|
+
"privacy": "protected",
|
|
11193
|
+
"inheritedFrom": {
|
|
11194
|
+
"name": "BaseServerSideDatasource",
|
|
11195
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11196
|
+
}
|
|
11197
|
+
},
|
|
11198
|
+
{
|
|
11199
|
+
"kind": "field",
|
|
11200
|
+
"name": "maxRows",
|
|
11201
|
+
"type": {
|
|
11202
|
+
"text": "number"
|
|
11203
|
+
},
|
|
11204
|
+
"privacy": "protected",
|
|
11205
|
+
"inheritedFrom": {
|
|
11206
|
+
"name": "BaseServerSideDatasource",
|
|
11207
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11208
|
+
}
|
|
11209
|
+
},
|
|
11210
|
+
{
|
|
11211
|
+
"kind": "field",
|
|
11212
|
+
"name": "maxView",
|
|
11213
|
+
"type": {
|
|
11214
|
+
"text": "number"
|
|
11215
|
+
},
|
|
11216
|
+
"privacy": "protected",
|
|
11217
|
+
"inheritedFrom": {
|
|
11218
|
+
"name": "BaseServerSideDatasource",
|
|
11219
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11220
|
+
}
|
|
11221
|
+
},
|
|
11222
|
+
{
|
|
11223
|
+
"kind": "field",
|
|
11224
|
+
"name": "pagination",
|
|
11225
|
+
"type": {
|
|
11226
|
+
"text": "boolean"
|
|
11227
|
+
},
|
|
11228
|
+
"privacy": "protected",
|
|
11229
|
+
"inheritedFrom": {
|
|
11230
|
+
"name": "BaseServerSideDatasource",
|
|
11231
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11232
|
+
}
|
|
11233
|
+
},
|
|
11234
|
+
{
|
|
11235
|
+
"kind": "field",
|
|
11236
|
+
"name": "zeroBasedViewNumber",
|
|
11237
|
+
"type": {
|
|
11238
|
+
"text": "boolean"
|
|
11239
|
+
},
|
|
11240
|
+
"privacy": "protected",
|
|
11241
|
+
"inheritedFrom": {
|
|
11242
|
+
"name": "BaseServerSideDatasource",
|
|
11243
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11244
|
+
}
|
|
11245
|
+
},
|
|
11246
|
+
{
|
|
11247
|
+
"kind": "field",
|
|
11248
|
+
"name": "sourceRef",
|
|
11249
|
+
"type": {
|
|
11250
|
+
"text": "string"
|
|
11251
|
+
},
|
|
11252
|
+
"inheritedFrom": {
|
|
11253
|
+
"name": "BaseServerSideDatasource",
|
|
11254
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11255
|
+
}
|
|
11256
|
+
},
|
|
11257
|
+
{
|
|
11258
|
+
"kind": "field",
|
|
11259
|
+
"name": "isNewPageSize",
|
|
11260
|
+
"type": {
|
|
11261
|
+
"text": "boolean"
|
|
11262
|
+
},
|
|
11263
|
+
"inheritedFrom": {
|
|
11264
|
+
"name": "BaseServerSideDatasource",
|
|
11265
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11266
|
+
}
|
|
11267
|
+
},
|
|
11268
|
+
{
|
|
11269
|
+
"kind": "field",
|
|
11270
|
+
"name": "lastSuccessRowData",
|
|
11271
|
+
"type": {
|
|
11272
|
+
"text": "LoadSuccessParams"
|
|
11273
|
+
},
|
|
11274
|
+
"inheritedFrom": {
|
|
11275
|
+
"name": "BaseServerSideDatasource",
|
|
11276
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11277
|
+
}
|
|
11278
|
+
},
|
|
11279
|
+
{
|
|
11280
|
+
"kind": "field",
|
|
11281
|
+
"name": "moreRows",
|
|
11282
|
+
"type": {
|
|
11283
|
+
"text": "boolean"
|
|
11284
|
+
},
|
|
11285
|
+
"privacy": "protected",
|
|
11286
|
+
"default": "false",
|
|
11287
|
+
"inheritedFrom": {
|
|
11288
|
+
"name": "BaseServerSideDatasource",
|
|
11289
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11290
|
+
}
|
|
11291
|
+
},
|
|
11292
|
+
{
|
|
11293
|
+
"kind": "field",
|
|
11294
|
+
"name": "calculatedRowsCount",
|
|
11295
|
+
"type": {
|
|
11296
|
+
"text": "number"
|
|
11297
|
+
},
|
|
11298
|
+
"privacy": "protected",
|
|
11299
|
+
"default": "0",
|
|
11300
|
+
"inheritedFrom": {
|
|
11301
|
+
"name": "BaseServerSideDatasource",
|
|
11302
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11303
|
+
}
|
|
11304
|
+
},
|
|
11305
|
+
{
|
|
11306
|
+
"kind": "field",
|
|
11307
|
+
"name": "currentSequenceId",
|
|
11308
|
+
"type": {
|
|
11309
|
+
"text": "null"
|
|
11310
|
+
},
|
|
11311
|
+
"privacy": "protected",
|
|
11312
|
+
"default": "null",
|
|
11313
|
+
"inheritedFrom": {
|
|
11314
|
+
"name": "BaseServerSideDatasource",
|
|
11315
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11316
|
+
}
|
|
11317
|
+
},
|
|
11318
|
+
{
|
|
11319
|
+
"kind": "field",
|
|
11320
|
+
"name": "currentFilterModel",
|
|
11321
|
+
"type": {
|
|
11322
|
+
"text": "SetFilterModel"
|
|
11323
|
+
},
|
|
11324
|
+
"privacy": "protected",
|
|
11325
|
+
"inheritedFrom": {
|
|
11326
|
+
"name": "BaseServerSideDatasource",
|
|
11327
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11328
|
+
}
|
|
11329
|
+
},
|
|
11330
|
+
{
|
|
11331
|
+
"kind": "field",
|
|
11332
|
+
"name": "originalCriteriaMatch",
|
|
11333
|
+
"type": {
|
|
11334
|
+
"text": "string | string[]"
|
|
11335
|
+
},
|
|
11336
|
+
"privacy": "protected",
|
|
11337
|
+
"inheritedFrom": {
|
|
11338
|
+
"name": "BaseServerSideDatasource",
|
|
11339
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11340
|
+
}
|
|
11341
|
+
},
|
|
11342
|
+
{
|
|
11343
|
+
"kind": "field",
|
|
11344
|
+
"name": "currentSortModel",
|
|
11345
|
+
"type": {
|
|
11346
|
+
"text": "SortModelItem[]"
|
|
11347
|
+
},
|
|
11348
|
+
"privacy": "protected",
|
|
11349
|
+
"inheritedFrom": {
|
|
11350
|
+
"name": "BaseServerSideDatasource",
|
|
11351
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11352
|
+
}
|
|
11353
|
+
},
|
|
11354
|
+
{
|
|
11355
|
+
"kind": "method",
|
|
11356
|
+
"name": "setupFilteringAndSorting",
|
|
11357
|
+
"privacy": "protected",
|
|
11358
|
+
"parameters": [
|
|
11359
|
+
{
|
|
11360
|
+
"name": "params",
|
|
11361
|
+
"type": {
|
|
11362
|
+
"text": "IServerSideGetRowsParams"
|
|
11363
|
+
}
|
|
11364
|
+
}
|
|
11365
|
+
],
|
|
11366
|
+
"inheritedFrom": {
|
|
11367
|
+
"name": "BaseServerSideDatasource",
|
|
11368
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
11369
|
+
}
|
|
11370
|
+
},
|
|
11371
|
+
{
|
|
11372
|
+
"kind": "method",
|
|
11373
|
+
"name": "destroy",
|
|
11374
|
+
"return": {
|
|
11375
|
+
"type": {
|
|
11376
|
+
"text": "void"
|
|
11377
|
+
}
|
|
9556
11378
|
},
|
|
9557
|
-
"fieldName": "fields",
|
|
9558
11379
|
"inheritedFrom": {
|
|
9559
|
-
"name": "
|
|
9560
|
-
"module": "src/datasource/base.
|
|
11380
|
+
"name": "BaseServerSideDatasource",
|
|
11381
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9561
11382
|
}
|
|
9562
11383
|
},
|
|
9563
11384
|
{
|
|
9564
|
-
"
|
|
9565
|
-
"
|
|
9566
|
-
|
|
11385
|
+
"kind": "method",
|
|
11386
|
+
"name": "refreshDatasource",
|
|
11387
|
+
"privacy": "protected",
|
|
11388
|
+
"return": {
|
|
11389
|
+
"type": {
|
|
11390
|
+
"text": "Promise<void>"
|
|
11391
|
+
}
|
|
9567
11392
|
},
|
|
9568
|
-
"
|
|
9569
|
-
|
|
11393
|
+
"parameters": [
|
|
11394
|
+
{
|
|
11395
|
+
"name": "params",
|
|
11396
|
+
"type": {
|
|
11397
|
+
"text": "IServerSideGetRowsParams"
|
|
11398
|
+
}
|
|
11399
|
+
}
|
|
11400
|
+
],
|
|
9570
11401
|
"inheritedFrom": {
|
|
9571
|
-
"name": "
|
|
9572
|
-
"module": "src/datasource/base.
|
|
11402
|
+
"name": "BaseServerSideDatasource",
|
|
11403
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9573
11404
|
}
|
|
9574
11405
|
},
|
|
9575
11406
|
{
|
|
9576
|
-
"
|
|
9577
|
-
"
|
|
9578
|
-
|
|
9579
|
-
|
|
9580
|
-
|
|
11407
|
+
"kind": "method",
|
|
11408
|
+
"name": "getOrderByAndToBeSortedColIds",
|
|
11409
|
+
"privacy": "protected",
|
|
11410
|
+
"parameters": [
|
|
11411
|
+
{
|
|
11412
|
+
"name": "map"
|
|
11413
|
+
},
|
|
11414
|
+
{
|
|
11415
|
+
"name": "searchValue"
|
|
11416
|
+
}
|
|
11417
|
+
],
|
|
9581
11418
|
"inheritedFrom": {
|
|
9582
|
-
"name": "
|
|
9583
|
-
"module": "src/datasource/base.
|
|
11419
|
+
"name": "BaseServerSideDatasource",
|
|
11420
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9584
11421
|
}
|
|
9585
11422
|
},
|
|
9586
11423
|
{
|
|
9587
|
-
"
|
|
9588
|
-
"
|
|
9589
|
-
|
|
11424
|
+
"kind": "method",
|
|
11425
|
+
"name": "buildCriteriaMatchFromFilters",
|
|
11426
|
+
"privacy": "protected",
|
|
11427
|
+
"return": {
|
|
11428
|
+
"type": {
|
|
11429
|
+
"text": "string"
|
|
11430
|
+
}
|
|
9590
11431
|
},
|
|
9591
|
-
"fieldName": "maxView",
|
|
9592
11432
|
"inheritedFrom": {
|
|
9593
|
-
"name": "
|
|
9594
|
-
"module": "src/datasource/base.
|
|
11433
|
+
"name": "BaseServerSideDatasource",
|
|
11434
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9595
11435
|
}
|
|
9596
11436
|
},
|
|
9597
11437
|
{
|
|
9598
|
-
"
|
|
9599
|
-
"
|
|
9600
|
-
|
|
11438
|
+
"kind": "method",
|
|
11439
|
+
"name": "criteriaFromFilters",
|
|
11440
|
+
"privacy": "protected",
|
|
11441
|
+
"return": {
|
|
11442
|
+
"type": {
|
|
11443
|
+
"text": "string[]"
|
|
11444
|
+
}
|
|
9601
11445
|
},
|
|
9602
|
-
"default": "false",
|
|
9603
|
-
"fieldName": "movingView",
|
|
9604
11446
|
"inheritedFrom": {
|
|
9605
|
-
"name": "
|
|
9606
|
-
"module": "src/datasource/base.
|
|
11447
|
+
"name": "BaseServerSideDatasource",
|
|
11448
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9607
11449
|
}
|
|
9608
11450
|
},
|
|
9609
11451
|
{
|
|
9610
|
-
"
|
|
9611
|
-
"
|
|
9612
|
-
|
|
9613
|
-
|
|
9614
|
-
|
|
11452
|
+
"kind": "method",
|
|
11453
|
+
"name": "getFiltersByType",
|
|
11454
|
+
"privacy": "protected",
|
|
11455
|
+
"parameters": [
|
|
11456
|
+
{
|
|
11457
|
+
"name": "filterType",
|
|
11458
|
+
"type": {
|
|
11459
|
+
"text": "string"
|
|
11460
|
+
}
|
|
11461
|
+
}
|
|
11462
|
+
],
|
|
9615
11463
|
"inheritedFrom": {
|
|
9616
|
-
"name": "
|
|
9617
|
-
"module": "src/datasource/base.
|
|
11464
|
+
"name": "BaseServerSideDatasource",
|
|
11465
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9618
11466
|
}
|
|
9619
11467
|
},
|
|
9620
11468
|
{
|
|
9621
|
-
"
|
|
9622
|
-
"
|
|
9623
|
-
|
|
9624
|
-
|
|
9625
|
-
|
|
11469
|
+
"kind": "method",
|
|
11470
|
+
"name": "getPageNumber",
|
|
11471
|
+
"privacy": "protected",
|
|
11472
|
+
"parameters": [
|
|
11473
|
+
{
|
|
11474
|
+
"name": "start",
|
|
11475
|
+
"type": {
|
|
11476
|
+
"text": "number"
|
|
11477
|
+
}
|
|
11478
|
+
},
|
|
11479
|
+
{
|
|
11480
|
+
"name": "recordsPerPage",
|
|
11481
|
+
"type": {
|
|
11482
|
+
"text": "number"
|
|
11483
|
+
}
|
|
11484
|
+
},
|
|
11485
|
+
{
|
|
11486
|
+
"name": "totalRecords",
|
|
11487
|
+
"type": {
|
|
11488
|
+
"text": "number"
|
|
11489
|
+
}
|
|
11490
|
+
},
|
|
11491
|
+
{
|
|
11492
|
+
"name": "zeroBasedViewNumber",
|
|
11493
|
+
"default": "true"
|
|
11494
|
+
}
|
|
11495
|
+
],
|
|
9626
11496
|
"inheritedFrom": {
|
|
9627
|
-
"name": "
|
|
9628
|
-
"module": "src/datasource/base.
|
|
11497
|
+
"name": "BaseServerSideDatasource",
|
|
11498
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9629
11499
|
}
|
|
9630
11500
|
},
|
|
9631
11501
|
{
|
|
9632
|
-
"
|
|
9633
|
-
"
|
|
9634
|
-
"
|
|
11502
|
+
"kind": "field",
|
|
11503
|
+
"name": "isNotFirstViewNumber",
|
|
11504
|
+
"type": {
|
|
11505
|
+
"text": "boolean"
|
|
11506
|
+
},
|
|
11507
|
+
"privacy": "protected",
|
|
11508
|
+
"readonly": true,
|
|
9635
11509
|
"inheritedFrom": {
|
|
9636
|
-
"name": "
|
|
9637
|
-
"module": "src/datasource/base.
|
|
11510
|
+
"name": "BaseServerSideDatasource",
|
|
11511
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
9638
11512
|
}
|
|
9639
11513
|
}
|
|
9640
11514
|
],
|
|
9641
|
-
"mixins": [
|
|
9642
|
-
{
|
|
9643
|
-
"name": "LifecycleMixin",
|
|
9644
|
-
"package": "@genesislcap/foundation-utils"
|
|
9645
|
-
}
|
|
9646
|
-
],
|
|
9647
11515
|
"superclass": {
|
|
9648
|
-
"name": "
|
|
9649
|
-
"module": "/src/datasource/base
|
|
9650
|
-
},
|
|
9651
|
-
"tagName": "grid-pro-server-side-datasource",
|
|
9652
|
-
"customElement": true
|
|
9653
|
-
}
|
|
9654
|
-
],
|
|
9655
|
-
"exports": [
|
|
9656
|
-
{
|
|
9657
|
-
"kind": "js",
|
|
9658
|
-
"name": "StreamDatasource",
|
|
9659
|
-
"declaration": {
|
|
9660
|
-
"name": "StreamDatasource",
|
|
9661
|
-
"module": "src/datasource/server-side.datasource.ts"
|
|
9662
|
-
}
|
|
9663
|
-
},
|
|
9664
|
-
{
|
|
9665
|
-
"kind": "js",
|
|
9666
|
-
"name": "GridProServerSideDatasource",
|
|
9667
|
-
"declaration": {
|
|
9668
|
-
"name": "GridProServerSideDatasource",
|
|
9669
|
-
"module": "src/datasource/server-side.datasource.ts"
|
|
9670
|
-
}
|
|
9671
|
-
},
|
|
9672
|
-
{
|
|
9673
|
-
"kind": "custom-element-definition",
|
|
9674
|
-
"name": "grid-pro-server-side-datasource",
|
|
9675
|
-
"declaration": {
|
|
9676
|
-
"name": "GridProServerSideDatasource",
|
|
9677
|
-
"module": "src/datasource/server-side.datasource.ts"
|
|
11516
|
+
"name": "BaseServerSideDatasource",
|
|
11517
|
+
"module": "/src/datasource/server-side.resource-base"
|
|
9678
11518
|
}
|
|
9679
11519
|
}
|
|
9680
|
-
]
|
|
9681
|
-
},
|
|
9682
|
-
{
|
|
9683
|
-
"kind": "javascript-module",
|
|
9684
|
-
"path": "src/datasource/server-side.grid-definitions.ts",
|
|
9685
|
-
"declarations": [
|
|
9686
|
-
{
|
|
9687
|
-
"kind": "function",
|
|
9688
|
-
"name": "getServerSideFilterParamsByFieldType",
|
|
9689
|
-
"return": {
|
|
9690
|
-
"type": {
|
|
9691
|
-
"text": ""
|
|
9692
|
-
}
|
|
9693
|
-
},
|
|
9694
|
-
"parameters": [
|
|
9695
|
-
{
|
|
9696
|
-
"name": "type",
|
|
9697
|
-
"type": {
|
|
9698
|
-
"text": "string"
|
|
9699
|
-
},
|
|
9700
|
-
"description": "The type of the field/column"
|
|
9701
|
-
}
|
|
9702
|
-
],
|
|
9703
|
-
"description": "Returns the filter params based on the Grid Pro field/column type."
|
|
9704
|
-
}
|
|
9705
11520
|
],
|
|
9706
11521
|
"exports": [
|
|
9707
11522
|
{
|
|
9708
11523
|
"kind": "js",
|
|
9709
|
-
"name": "
|
|
11524
|
+
"name": "ReqRepServerSideDatasource",
|
|
9710
11525
|
"declaration": {
|
|
9711
|
-
"name": "
|
|
9712
|
-
"module": "src/datasource/server-side.
|
|
11526
|
+
"name": "ReqRepServerSideDatasource",
|
|
11527
|
+
"module": "src/datasource/server-side.resource-reqrep.ts"
|
|
9713
11528
|
}
|
|
9714
11529
|
}
|
|
9715
11530
|
]
|
|
@@ -9922,7 +11737,7 @@
|
|
|
9922
11737
|
{
|
|
9923
11738
|
"kind": "variable",
|
|
9924
11739
|
"name": "agExternalStockStyles",
|
|
9925
|
-
"default": "css`\n ${agGridCSS}\n ${agHeadCSS}\n ${agThemeAlpineNofontsCSS}\n ${agThemeBalhamNofontsCSS}\n ${agThemeMaterialNofontsCSS}\n
|
|
11740
|
+
"default": "css`\n ${agGridCSS}\n ${agHeadCSS}\n ${agThemeAlpineNofontsCSS}\n ${agThemeBalhamNofontsCSS}\n ${agThemeMaterialNofontsCSS}\n`",
|
|
9926
11741
|
"description": "All External AG Grid Stock in one CSS.",
|
|
9927
11742
|
"privacy": "public"
|
|
9928
11743
|
}
|
|
@@ -9995,20 +11810,6 @@
|
|
|
9995
11810
|
"description": "The Genesis Datasource element, for CSRM-compatible data fetching and used exclusively by the GridPro element.",
|
|
9996
11811
|
"name": "GridProGenesisDatasource",
|
|
9997
11812
|
"members": [
|
|
9998
|
-
{
|
|
9999
|
-
"kind": "field",
|
|
10000
|
-
"name": "auth",
|
|
10001
|
-
"type": {
|
|
10002
|
-
"text": "Auth"
|
|
10003
|
-
}
|
|
10004
|
-
},
|
|
10005
|
-
{
|
|
10006
|
-
"kind": "field",
|
|
10007
|
-
"name": "datasource",
|
|
10008
|
-
"type": {
|
|
10009
|
-
"text": "Datasource"
|
|
10010
|
-
}
|
|
10011
|
-
},
|
|
10012
11813
|
{
|
|
10013
11814
|
"kind": "field",
|
|
10014
11815
|
"name": "applyFuncName",
|
|
@@ -10031,50 +11832,28 @@
|
|
|
10031
11832
|
"privacy": "protected",
|
|
10032
11833
|
"default": "'applyTransactionAsync'",
|
|
10033
11834
|
"inheritedFrom": {
|
|
10034
|
-
"name": "GridProBaseDatasource",
|
|
10035
|
-
"module": "src/datasource/base.datasource.ts"
|
|
10036
|
-
}
|
|
10037
|
-
},
|
|
10038
|
-
{
|
|
10039
|
-
"kind": "method",
|
|
10040
|
-
"name": "criteriaChanged",
|
|
10041
|
-
"parameters": [
|
|
10042
|
-
{
|
|
10043
|
-
"name": "oldCriteria",
|
|
10044
|
-
"type": {
|
|
10045
|
-
"text": "string"
|
|
10046
|
-
}
|
|
10047
|
-
},
|
|
10048
|
-
{
|
|
10049
|
-
"name": "newCriteria",
|
|
10050
|
-
"type": {
|
|
10051
|
-
"text": "string"
|
|
10052
|
-
}
|
|
10053
|
-
}
|
|
10054
|
-
]
|
|
10055
|
-
},
|
|
10056
|
-
{
|
|
10057
|
-
"kind": "field",
|
|
10058
|
-
"name": "pollingInterval",
|
|
10059
|
-
"type": {
|
|
10060
|
-
"text": "number"
|
|
10061
|
-
}
|
|
10062
|
-
},
|
|
10063
|
-
{
|
|
10064
|
-
"kind": "field",
|
|
10065
|
-
"name": "disablePolling",
|
|
10066
|
-
"type": {
|
|
10067
|
-
"text": "boolean"
|
|
10068
|
-
},
|
|
10069
|
-
"default": "false"
|
|
10070
|
-
},
|
|
10071
|
-
{
|
|
10072
|
-
"kind": "field",
|
|
10073
|
-
"name": "request",
|
|
10074
|
-
"type": {
|
|
10075
|
-
"text": "any"
|
|
11835
|
+
"name": "GridProBaseDatasource",
|
|
11836
|
+
"module": "src/datasource/base.datasource.ts"
|
|
10076
11837
|
}
|
|
10077
11838
|
},
|
|
11839
|
+
{
|
|
11840
|
+
"kind": "method",
|
|
11841
|
+
"name": "criteriaChanged",
|
|
11842
|
+
"parameters": [
|
|
11843
|
+
{
|
|
11844
|
+
"name": "oldCriteria",
|
|
11845
|
+
"type": {
|
|
11846
|
+
"text": "string"
|
|
11847
|
+
}
|
|
11848
|
+
},
|
|
11849
|
+
{
|
|
11850
|
+
"name": "newCriteria",
|
|
11851
|
+
"type": {
|
|
11852
|
+
"text": "string"
|
|
11853
|
+
}
|
|
11854
|
+
}
|
|
11855
|
+
]
|
|
11856
|
+
},
|
|
10078
11857
|
{
|
|
10079
11858
|
"kind": "method",
|
|
10080
11859
|
"name": "requestChanged",
|
|
@@ -10160,24 +11939,6 @@
|
|
|
10160
11939
|
"privacy": "private",
|
|
10161
11940
|
"default": "true"
|
|
10162
11941
|
},
|
|
10163
|
-
{
|
|
10164
|
-
"kind": "field",
|
|
10165
|
-
"name": "criteriaFromFilters",
|
|
10166
|
-
"type": {
|
|
10167
|
-
"text": "Map<string, string>"
|
|
10168
|
-
},
|
|
10169
|
-
"privacy": "private",
|
|
10170
|
-
"default": "new Map()"
|
|
10171
|
-
},
|
|
10172
|
-
{
|
|
10173
|
-
"kind": "field",
|
|
10174
|
-
"name": "update",
|
|
10175
|
-
"type": {
|
|
10176
|
-
"text": "BehaviorSubject<Map<string, string>>"
|
|
10177
|
-
},
|
|
10178
|
-
"privacy": "private",
|
|
10179
|
-
"default": "new BehaviorSubject(new Map())"
|
|
10180
|
-
},
|
|
10181
11942
|
{
|
|
10182
11943
|
"kind": "method",
|
|
10183
11944
|
"name": "deepClone",
|
|
@@ -10239,10 +12000,17 @@
|
|
|
10239
12000
|
"description": "Initializes the datasource.",
|
|
10240
12001
|
"privacy": "public"
|
|
10241
12002
|
},
|
|
12003
|
+
{
|
|
12004
|
+
"kind": "method",
|
|
12005
|
+
"name": "destroy",
|
|
12006
|
+
"description": "Destroys the datasource, resetting it to its initial state.",
|
|
12007
|
+
"privacy": "public"
|
|
12008
|
+
},
|
|
10242
12009
|
{
|
|
10243
12010
|
"kind": "method",
|
|
10244
12011
|
"name": "deinit",
|
|
10245
12012
|
"description": "Deinitialises the datasource, resetting it to its initial state.",
|
|
12013
|
+
"deprecated": "Use `destroy` instead",
|
|
10246
12014
|
"privacy": "public"
|
|
10247
12015
|
},
|
|
10248
12016
|
{
|
|
@@ -10250,7 +12018,7 @@
|
|
|
10250
12018
|
"name": "reset",
|
|
10251
12019
|
"description": "Resets the datasource to its initial state.",
|
|
10252
12020
|
"privacy": "public",
|
|
10253
|
-
"deprecated": "Use `
|
|
12021
|
+
"deprecated": "Use `destroy` instead"
|
|
10254
12022
|
},
|
|
10255
12023
|
{
|
|
10256
12024
|
"kind": "method",
|
|
@@ -10278,23 +12046,13 @@
|
|
|
10278
12046
|
"name": "handleErrors",
|
|
10279
12047
|
"parameters": [
|
|
10280
12048
|
{
|
|
10281
|
-
"name": "
|
|
12049
|
+
"name": "errors",
|
|
10282
12050
|
"type": {
|
|
10283
|
-
"text": "string"
|
|
12051
|
+
"text": "string | any[]"
|
|
10284
12052
|
}
|
|
10285
12053
|
}
|
|
10286
12054
|
]
|
|
10287
12055
|
},
|
|
10288
|
-
{
|
|
10289
|
-
"kind": "method",
|
|
10290
|
-
"name": "datasourceOptions",
|
|
10291
|
-
"privacy": "private",
|
|
10292
|
-
"return": {
|
|
10293
|
-
"type": {
|
|
10294
|
-
"text": "DatasourceOptions"
|
|
10295
|
-
}
|
|
10296
|
-
}
|
|
10297
|
-
},
|
|
10298
12056
|
{
|
|
10299
12057
|
"kind": "method",
|
|
10300
12058
|
"name": "handleStreamResult",
|
|
@@ -10347,16 +12105,6 @@
|
|
|
10347
12105
|
}
|
|
10348
12106
|
]
|
|
10349
12107
|
},
|
|
10350
|
-
{
|
|
10351
|
-
"kind": "method",
|
|
10352
|
-
"name": "buildCriteria",
|
|
10353
|
-
"privacy": "private",
|
|
10354
|
-
"return": {
|
|
10355
|
-
"type": {
|
|
10356
|
-
"text": "string"
|
|
10357
|
-
}
|
|
10358
|
-
}
|
|
10359
|
-
},
|
|
10360
12108
|
{
|
|
10361
12109
|
"kind": "method",
|
|
10362
12110
|
"name": "setFilter",
|
|
@@ -10374,7 +12122,11 @@
|
|
|
10374
12122
|
"text": "string"
|
|
10375
12123
|
}
|
|
10376
12124
|
}
|
|
10377
|
-
]
|
|
12125
|
+
],
|
|
12126
|
+
"inheritedFrom": {
|
|
12127
|
+
"name": "GenesisGridDatasourceElement",
|
|
12128
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12129
|
+
}
|
|
10378
12130
|
},
|
|
10379
12131
|
{
|
|
10380
12132
|
"kind": "method",
|
|
@@ -10387,7 +12139,11 @@
|
|
|
10387
12139
|
"text": "string"
|
|
10388
12140
|
}
|
|
10389
12141
|
}
|
|
10390
|
-
]
|
|
12142
|
+
],
|
|
12143
|
+
"inheritedFrom": {
|
|
12144
|
+
"name": "GenesisGridDatasourceElement",
|
|
12145
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12146
|
+
}
|
|
10391
12147
|
},
|
|
10392
12148
|
{
|
|
10393
12149
|
"kind": "method",
|
|
@@ -10742,6 +12498,17 @@
|
|
|
10742
12498
|
"module": "src/datasource/base.datasource.ts"
|
|
10743
12499
|
}
|
|
10744
12500
|
},
|
|
12501
|
+
{
|
|
12502
|
+
"kind": "field",
|
|
12503
|
+
"name": "datasource",
|
|
12504
|
+
"type": {
|
|
12505
|
+
"text": "Datasource"
|
|
12506
|
+
},
|
|
12507
|
+
"inheritedFrom": {
|
|
12508
|
+
"name": "GenesisGridDatasourceElement",
|
|
12509
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12510
|
+
}
|
|
12511
|
+
},
|
|
10745
12512
|
{
|
|
10746
12513
|
"kind": "field",
|
|
10747
12514
|
"name": "deferredGridOptions",
|
|
@@ -10878,6 +12645,64 @@
|
|
|
10878
12645
|
"module": "src/datasource/base.datasource.ts"
|
|
10879
12646
|
}
|
|
10880
12647
|
},
|
|
12648
|
+
{
|
|
12649
|
+
"kind": "field",
|
|
12650
|
+
"name": "viewNumber",
|
|
12651
|
+
"type": {
|
|
12652
|
+
"text": "number"
|
|
12653
|
+
},
|
|
12654
|
+
"inheritedFrom": {
|
|
12655
|
+
"name": "GenesisGridDatasourceElement",
|
|
12656
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12657
|
+
}
|
|
12658
|
+
},
|
|
12659
|
+
{
|
|
12660
|
+
"kind": "field",
|
|
12661
|
+
"name": "pollingInterval",
|
|
12662
|
+
"type": {
|
|
12663
|
+
"text": "number"
|
|
12664
|
+
},
|
|
12665
|
+
"inheritedFrom": {
|
|
12666
|
+
"name": "GenesisGridDatasourceElement",
|
|
12667
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12668
|
+
}
|
|
12669
|
+
},
|
|
12670
|
+
{
|
|
12671
|
+
"kind": "field",
|
|
12672
|
+
"name": "disablePolling",
|
|
12673
|
+
"type": {
|
|
12674
|
+
"text": "boolean"
|
|
12675
|
+
},
|
|
12676
|
+
"default": "false",
|
|
12677
|
+
"inheritedFrom": {
|
|
12678
|
+
"name": "GenesisGridDatasourceElement",
|
|
12679
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12680
|
+
}
|
|
12681
|
+
},
|
|
12682
|
+
{
|
|
12683
|
+
"kind": "field",
|
|
12684
|
+
"name": "request",
|
|
12685
|
+
"type": {
|
|
12686
|
+
"text": "any"
|
|
12687
|
+
},
|
|
12688
|
+
"inheritedFrom": {
|
|
12689
|
+
"name": "GenesisGridDatasourceElement",
|
|
12690
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12691
|
+
}
|
|
12692
|
+
},
|
|
12693
|
+
{
|
|
12694
|
+
"kind": "field",
|
|
12695
|
+
"name": "requestAutoSetup",
|
|
12696
|
+
"type": {
|
|
12697
|
+
"text": "boolean"
|
|
12698
|
+
},
|
|
12699
|
+
"default": "true",
|
|
12700
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
12701
|
+
"inheritedFrom": {
|
|
12702
|
+
"name": "GenesisGridDatasourceElement",
|
|
12703
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12704
|
+
}
|
|
12705
|
+
},
|
|
10881
12706
|
{
|
|
10882
12707
|
"kind": "field",
|
|
10883
12708
|
"name": "rowIdAttr",
|
|
@@ -10913,14 +12738,67 @@
|
|
|
10913
12738
|
"module": "src/datasource/base.datasource.ts"
|
|
10914
12739
|
}
|
|
10915
12740
|
},
|
|
12741
|
+
{
|
|
12742
|
+
"kind": "field",
|
|
12743
|
+
"name": "criteriaFromFilters",
|
|
12744
|
+
"type": {
|
|
12745
|
+
"text": "Map<string, string>"
|
|
12746
|
+
},
|
|
12747
|
+
"privacy": "protected",
|
|
12748
|
+
"default": "new Map()",
|
|
12749
|
+
"inheritedFrom": {
|
|
12750
|
+
"name": "GenesisGridDatasourceElement",
|
|
12751
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12752
|
+
}
|
|
12753
|
+
},
|
|
12754
|
+
{
|
|
12755
|
+
"kind": "field",
|
|
12756
|
+
"name": "update",
|
|
12757
|
+
"type": {
|
|
12758
|
+
"text": "BehaviorSubject<Map<string, string>>"
|
|
12759
|
+
},
|
|
12760
|
+
"privacy": "protected",
|
|
12761
|
+
"default": "new BehaviorSubject(new Map())",
|
|
12762
|
+
"inheritedFrom": {
|
|
12763
|
+
"name": "GenesisGridDatasourceElement",
|
|
12764
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12765
|
+
}
|
|
12766
|
+
},
|
|
12767
|
+
{
|
|
12768
|
+
"kind": "method",
|
|
12769
|
+
"name": "datasourceOptions",
|
|
12770
|
+
"privacy": "protected",
|
|
12771
|
+
"return": {
|
|
12772
|
+
"type": {
|
|
12773
|
+
"text": "DatasourceOptions"
|
|
12774
|
+
}
|
|
12775
|
+
},
|
|
12776
|
+
"inheritedFrom": {
|
|
12777
|
+
"name": "GenesisGridDatasourceElement",
|
|
12778
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12779
|
+
}
|
|
12780
|
+
},
|
|
12781
|
+
{
|
|
12782
|
+
"kind": "method",
|
|
12783
|
+
"name": "buildCriteria",
|
|
12784
|
+
"privacy": "private",
|
|
12785
|
+
"return": {
|
|
12786
|
+
"type": {
|
|
12787
|
+
"text": "string"
|
|
12788
|
+
}
|
|
12789
|
+
},
|
|
12790
|
+
"inheritedFrom": {
|
|
12791
|
+
"name": "GenesisGridDatasourceElement",
|
|
12792
|
+
"module": "src/datasource/base.datasource.ts"
|
|
12793
|
+
}
|
|
12794
|
+
},
|
|
10916
12795
|
{
|
|
10917
12796
|
"kind": "field",
|
|
10918
12797
|
"name": "isRequestServer",
|
|
10919
12798
|
"type": {
|
|
10920
12799
|
"text": "boolean"
|
|
10921
12800
|
},
|
|
10922
|
-
"
|
|
10923
|
-
"default": "false",
|
|
12801
|
+
"readonly": true,
|
|
10924
12802
|
"inheritedFrom": {
|
|
10925
12803
|
"name": "GenesisGridDatasourceElement",
|
|
10926
12804
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -11074,21 +12952,6 @@
|
|
|
11074
12952
|
}
|
|
11075
12953
|
],
|
|
11076
12954
|
"attributes": [
|
|
11077
|
-
{
|
|
11078
|
-
"name": "polling-interval",
|
|
11079
|
-
"type": {
|
|
11080
|
-
"text": "number"
|
|
11081
|
-
},
|
|
11082
|
-
"fieldName": "pollingInterval"
|
|
11083
|
-
},
|
|
11084
|
-
{
|
|
11085
|
-
"name": "disable-polling",
|
|
11086
|
-
"type": {
|
|
11087
|
-
"text": "boolean"
|
|
11088
|
-
},
|
|
11089
|
-
"default": "false",
|
|
11090
|
-
"fieldName": "disablePolling"
|
|
11091
|
-
},
|
|
11092
12955
|
{
|
|
11093
12956
|
"name": "restart-on-reconnection",
|
|
11094
12957
|
"type": {
|
|
@@ -11206,6 +13069,53 @@
|
|
|
11206
13069
|
"module": "src/datasource/base.datasource.ts"
|
|
11207
13070
|
}
|
|
11208
13071
|
},
|
|
13072
|
+
{
|
|
13073
|
+
"name": "view-number",
|
|
13074
|
+
"type": {
|
|
13075
|
+
"text": "number"
|
|
13076
|
+
},
|
|
13077
|
+
"fieldName": "viewNumber",
|
|
13078
|
+
"inheritedFrom": {
|
|
13079
|
+
"name": "GenesisGridDatasourceElement",
|
|
13080
|
+
"module": "src/datasource/base.datasource.ts"
|
|
13081
|
+
}
|
|
13082
|
+
},
|
|
13083
|
+
{
|
|
13084
|
+
"name": "polling-interval",
|
|
13085
|
+
"type": {
|
|
13086
|
+
"text": "number"
|
|
13087
|
+
},
|
|
13088
|
+
"fieldName": "pollingInterval",
|
|
13089
|
+
"inheritedFrom": {
|
|
13090
|
+
"name": "GenesisGridDatasourceElement",
|
|
13091
|
+
"module": "src/datasource/base.datasource.ts"
|
|
13092
|
+
}
|
|
13093
|
+
},
|
|
13094
|
+
{
|
|
13095
|
+
"name": "disable-polling",
|
|
13096
|
+
"type": {
|
|
13097
|
+
"text": "boolean"
|
|
13098
|
+
},
|
|
13099
|
+
"default": "false",
|
|
13100
|
+
"fieldName": "disablePolling",
|
|
13101
|
+
"inheritedFrom": {
|
|
13102
|
+
"name": "GenesisGridDatasourceElement",
|
|
13103
|
+
"module": "src/datasource/base.datasource.ts"
|
|
13104
|
+
}
|
|
13105
|
+
},
|
|
13106
|
+
{
|
|
13107
|
+
"name": "request-auto-setup",
|
|
13108
|
+
"type": {
|
|
13109
|
+
"text": "boolean"
|
|
13110
|
+
},
|
|
13111
|
+
"default": "true",
|
|
13112
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
13113
|
+
"fieldName": "requestAutoSetup",
|
|
13114
|
+
"inheritedFrom": {
|
|
13115
|
+
"name": "GenesisGridDatasourceElement",
|
|
13116
|
+
"module": "src/datasource/base.datasource.ts"
|
|
13117
|
+
}
|
|
13118
|
+
},
|
|
11209
13119
|
{
|
|
11210
13120
|
"name": "row-id",
|
|
11211
13121
|
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|