@genesislcap/grid-pro 14.323.0 → 14.324.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 +1 -1
- package/dist/custom-elements.json +941 -349
- package/dist/dts/datasource/base.datasource.d.ts +64 -5
- package/dist/dts/datasource/base.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/base.types.d.ts +5 -2
- package/dist/dts/datasource/base.types.d.ts.map +1 -1
- package/dist/dts/datasource/datasource.types.d.ts +8 -0
- package/dist/dts/datasource/datasource.types.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.datasource.d.ts +9 -1
- package/dist/dts/datasource/server-side.datasource.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.resource-base.d.ts +26 -2
- package/dist/dts/datasource/server-side.resource-base.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.resource-dataserver.d.ts +5 -0
- package/dist/dts/datasource/server-side.resource-dataserver.d.ts.map +1 -1
- package/dist/dts/datasource/server-side.resource-reqrep.d.ts +9 -0
- package/dist/dts/datasource/server-side.resource-reqrep.d.ts.map +1 -1
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +2 -0
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/dts/status-bar-components/pagination.status-bar.d.ts.map +1 -1
- package/dist/esm/datasource/base.datasource.js +61 -19
- package/dist/esm/datasource/server-side.datasource.js +32 -44
- package/dist/esm/datasource/server-side.resource-base.js +36 -38
- package/dist/esm/datasource/server-side.resource-dataserver.js +47 -1
- package/dist/esm/datasource/server-side.resource-reqrep.js +174 -39
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +40 -2
- package/dist/esm/status-bar-components/pagination.status-bar.js +29 -4
- package/dist/grid-pro.api.json +82 -21
- package/dist/grid-pro.d.ts +83 -6
- package/docs/api/grid-pro.genesisgriddatasourceelement.criteria.md +2 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.disablepolling.md +7 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.fields.md +7 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.issnapshot.md +7 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.maxrows.md +7 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.maxview.md +7 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.md +47 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.movingview.md +7 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.offset.md +18 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.orderby.md +7 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.pollinginterval.md +7 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.polltriggerevents.md +7 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.request.md +7 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.resourcename.md +7 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.reverse.md +7 -0
- package/docs/api/grid-pro.genesisgriddatasourceelement.viewnumber.md +2 -0
- package/docs/api/grid-pro.gridproserversidedatasource.md +3 -5
- package/docs/api/grid-pro.gridproserversidedatasource.pagingmode.md +21 -0
- package/docs/api/grid-pro.md +11 -0
- package/docs/api/grid-pro.pagingmode.md +18 -0
- package/docs/api-report.md.api.md +5 -16
- package/package.json +13 -13
- package/docs/api/grid-pro.gridproserversidedatasource.params.md +0 -14
|
@@ -6363,14 +6363,8 @@
|
|
|
6363
6363
|
"name": "criteria",
|
|
6364
6364
|
"type": {
|
|
6365
6365
|
"text": "string"
|
|
6366
|
-
}
|
|
6367
|
-
|
|
6368
|
-
{
|
|
6369
|
-
"kind": "field",
|
|
6370
|
-
"name": "fields",
|
|
6371
|
-
"type": {
|
|
6372
|
-
"text": "string"
|
|
6373
|
-
}
|
|
6366
|
+
},
|
|
6367
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription."
|
|
6374
6368
|
},
|
|
6375
6369
|
{
|
|
6376
6370
|
"kind": "field",
|
|
@@ -6378,43 +6372,65 @@
|
|
|
6378
6372
|
"type": {
|
|
6379
6373
|
"text": "boolean"
|
|
6380
6374
|
},
|
|
6381
|
-
"default": "false"
|
|
6375
|
+
"default": "false",
|
|
6376
|
+
"description": "Request a snapshot from the server."
|
|
6382
6377
|
},
|
|
6383
6378
|
{
|
|
6384
6379
|
"kind": "field",
|
|
6385
6380
|
"name": "maxRows",
|
|
6386
6381
|
"type": {
|
|
6387
6382
|
"text": "number"
|
|
6388
|
-
}
|
|
6383
|
+
},
|
|
6384
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages."
|
|
6389
6385
|
},
|
|
6390
6386
|
{
|
|
6391
6387
|
"kind": "field",
|
|
6392
|
-
"name": "
|
|
6388
|
+
"name": "orderBy",
|
|
6393
6389
|
"type": {
|
|
6394
|
-
"text": "
|
|
6395
|
-
}
|
|
6390
|
+
"text": "string"
|
|
6391
|
+
},
|
|
6392
|
+
"description": "Option to select a Data Server index (defined in the Data Server query), which is especially useful if you want the data to be sorted in a specific way."
|
|
6396
6393
|
},
|
|
6397
6394
|
{
|
|
6398
6395
|
"kind": "field",
|
|
6399
|
-
"name": "
|
|
6396
|
+
"name": "resourceName",
|
|
6400
6397
|
"type": {
|
|
6401
|
-
"text": "
|
|
6398
|
+
"text": "string"
|
|
6402
6399
|
},
|
|
6403
|
-
"
|
|
6400
|
+
"description": "The name of the target Data Server query or Request Server requestReply."
|
|
6404
6401
|
},
|
|
6405
6402
|
{
|
|
6406
6403
|
"kind": "field",
|
|
6407
|
-
"name": "
|
|
6404
|
+
"name": "viewNumber",
|
|
6408
6405
|
"type": {
|
|
6409
|
-
"text": "
|
|
6410
|
-
}
|
|
6406
|
+
"text": "number"
|
|
6407
|
+
},
|
|
6408
|
+
"description": "The desired view/page you want data from."
|
|
6411
6409
|
},
|
|
6412
6410
|
{
|
|
6413
6411
|
"kind": "field",
|
|
6414
|
-
"name": "
|
|
6412
|
+
"name": "fields",
|
|
6415
6413
|
"type": {
|
|
6416
6414
|
"text": "string"
|
|
6417
|
-
}
|
|
6415
|
+
},
|
|
6416
|
+
"description": "Optional parameter that allows you to select a subset of fields from the query if the client is not interested in receiving all of them."
|
|
6417
|
+
},
|
|
6418
|
+
{
|
|
6419
|
+
"kind": "field",
|
|
6420
|
+
"name": "maxView",
|
|
6421
|
+
"type": {
|
|
6422
|
+
"text": "number"
|
|
6423
|
+
},
|
|
6424
|
+
"description": "Maximum number of rows to track as part of a client \"view\"."
|
|
6425
|
+
},
|
|
6426
|
+
{
|
|
6427
|
+
"kind": "field",
|
|
6428
|
+
"name": "movingView",
|
|
6429
|
+
"type": {
|
|
6430
|
+
"text": "boolean"
|
|
6431
|
+
},
|
|
6432
|
+
"default": "false",
|
|
6433
|
+
"description": "If true, when the maximum number of rows defined in max-view is reached, the Data Server will start discarding the oldest rows (in terms of timestamp) and sending newer rows."
|
|
6418
6434
|
},
|
|
6419
6435
|
{
|
|
6420
6436
|
"kind": "field",
|
|
@@ -6422,44 +6438,50 @@
|
|
|
6422
6438
|
"type": {
|
|
6423
6439
|
"text": "boolean"
|
|
6424
6440
|
},
|
|
6425
|
-
"default": "false"
|
|
6441
|
+
"default": "false",
|
|
6442
|
+
"description": "Option that changes the Data Server index iteration."
|
|
6426
6443
|
},
|
|
6427
6444
|
{
|
|
6428
6445
|
"kind": "field",
|
|
6429
|
-
"name": "
|
|
6446
|
+
"name": "disablePolling",
|
|
6430
6447
|
"type": {
|
|
6431
|
-
"text": "
|
|
6432
|
-
}
|
|
6448
|
+
"text": "boolean"
|
|
6449
|
+
},
|
|
6450
|
+
"default": "false",
|
|
6451
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically)."
|
|
6433
6452
|
},
|
|
6434
6453
|
{
|
|
6435
6454
|
"kind": "field",
|
|
6436
|
-
"name": "
|
|
6455
|
+
"name": "offset",
|
|
6437
6456
|
"type": {
|
|
6438
6457
|
"text": "number"
|
|
6439
|
-
}
|
|
6458
|
+
},
|
|
6459
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios."
|
|
6440
6460
|
},
|
|
6441
6461
|
{
|
|
6442
6462
|
"kind": "field",
|
|
6443
|
-
"name": "
|
|
6463
|
+
"name": "pollingInterval",
|
|
6444
6464
|
"type": {
|
|
6445
|
-
"text": "
|
|
6465
|
+
"text": "number"
|
|
6446
6466
|
},
|
|
6447
|
-
"
|
|
6467
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource."
|
|
6448
6468
|
},
|
|
6449
6469
|
{
|
|
6450
6470
|
"kind": "field",
|
|
6451
|
-
"name": "
|
|
6471
|
+
"name": "pollTriggerEvents",
|
|
6452
6472
|
"type": {
|
|
6453
|
-
"text": "
|
|
6473
|
+
"text": "string[]"
|
|
6454
6474
|
},
|
|
6455
|
-
"default": "
|
|
6475
|
+
"default": "[]",
|
|
6476
|
+
"description": "Array of event names that will trigger a poll when received as commit responses."
|
|
6456
6477
|
},
|
|
6457
6478
|
{
|
|
6458
6479
|
"kind": "field",
|
|
6459
6480
|
"name": "request",
|
|
6460
6481
|
"type": {
|
|
6461
6482
|
"text": "any"
|
|
6462
|
-
}
|
|
6483
|
+
},
|
|
6484
|
+
"description": "Similar to fields but for Request Server scenarios. This optional parameter enables you to specify request fields, which can include wildcards."
|
|
6463
6485
|
},
|
|
6464
6486
|
{
|
|
6465
6487
|
"kind": "field",
|
|
@@ -6745,21 +6767,16 @@
|
|
|
6745
6767
|
"type": {
|
|
6746
6768
|
"text": "string"
|
|
6747
6769
|
},
|
|
6770
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
6748
6771
|
"fieldName": "criteria"
|
|
6749
6772
|
},
|
|
6750
|
-
{
|
|
6751
|
-
"name": "fields",
|
|
6752
|
-
"type": {
|
|
6753
|
-
"text": "string"
|
|
6754
|
-
},
|
|
6755
|
-
"fieldName": "fields"
|
|
6756
|
-
},
|
|
6757
6773
|
{
|
|
6758
6774
|
"name": "is-snapshot",
|
|
6759
6775
|
"type": {
|
|
6760
6776
|
"text": "boolean"
|
|
6761
6777
|
},
|
|
6762
6778
|
"default": "false",
|
|
6779
|
+
"description": "Request a snapshot from the server.",
|
|
6763
6780
|
"fieldName": "isSnapshot"
|
|
6764
6781
|
},
|
|
6765
6782
|
{
|
|
@@ -6767,57 +6784,65 @@
|
|
|
6767
6784
|
"type": {
|
|
6768
6785
|
"text": "number"
|
|
6769
6786
|
},
|
|
6787
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
6770
6788
|
"fieldName": "maxRows"
|
|
6771
6789
|
},
|
|
6772
6790
|
{
|
|
6773
|
-
"name": "
|
|
6791
|
+
"name": "order-by",
|
|
6774
6792
|
"type": {
|
|
6775
|
-
"text": "
|
|
6793
|
+
"text": "string"
|
|
6776
6794
|
},
|
|
6777
|
-
"
|
|
6795
|
+
"description": "Option to select a Data Server index (defined in the Data Server query), which is especially useful if you want the data to be sorted in a specific way.",
|
|
6796
|
+
"fieldName": "orderBy"
|
|
6778
6797
|
},
|
|
6779
6798
|
{
|
|
6780
|
-
"name": "
|
|
6799
|
+
"name": "resource-name",
|
|
6781
6800
|
"type": {
|
|
6782
|
-
"text": "
|
|
6801
|
+
"text": "string"
|
|
6783
6802
|
},
|
|
6784
|
-
"
|
|
6785
|
-
"fieldName": "
|
|
6803
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
6804
|
+
"fieldName": "resourceName"
|
|
6786
6805
|
},
|
|
6787
6806
|
{
|
|
6788
|
-
"name": "
|
|
6807
|
+
"name": "view-number",
|
|
6789
6808
|
"type": {
|
|
6790
|
-
"text": "
|
|
6809
|
+
"text": "number"
|
|
6791
6810
|
},
|
|
6792
|
-
"
|
|
6811
|
+
"description": "The desired view/page you want data from.",
|
|
6812
|
+
"fieldName": "viewNumber"
|
|
6793
6813
|
},
|
|
6794
6814
|
{
|
|
6795
|
-
"name": "
|
|
6815
|
+
"name": "fields",
|
|
6796
6816
|
"type": {
|
|
6797
6817
|
"text": "string"
|
|
6798
6818
|
},
|
|
6799
|
-
"
|
|
6819
|
+
"description": "Optional parameter that allows you to select a subset of fields from the query if the client is not interested in receiving all of them.",
|
|
6820
|
+
"fieldName": "fields"
|
|
6800
6821
|
},
|
|
6801
6822
|
{
|
|
6823
|
+
"name": "max-view",
|
|
6802
6824
|
"type": {
|
|
6803
|
-
"text": "
|
|
6825
|
+
"text": "number"
|
|
6804
6826
|
},
|
|
6805
|
-
"
|
|
6806
|
-
"fieldName": "
|
|
6827
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
6828
|
+
"fieldName": "maxView"
|
|
6807
6829
|
},
|
|
6808
6830
|
{
|
|
6809
|
-
"name": "view
|
|
6831
|
+
"name": "moving-view",
|
|
6810
6832
|
"type": {
|
|
6811
|
-
"text": "
|
|
6833
|
+
"text": "boolean"
|
|
6812
6834
|
},
|
|
6813
|
-
"
|
|
6835
|
+
"default": "false",
|
|
6836
|
+
"description": "If true, when the maximum number of rows defined in max-view is reached, the Data Server will start discarding the oldest rows (in terms of timestamp) and sending newer rows.",
|
|
6837
|
+
"fieldName": "movingView"
|
|
6814
6838
|
},
|
|
6815
6839
|
{
|
|
6816
|
-
"name": "polling-interval",
|
|
6817
6840
|
"type": {
|
|
6818
|
-
"text": "
|
|
6841
|
+
"text": "boolean"
|
|
6819
6842
|
},
|
|
6820
|
-
"
|
|
6843
|
+
"default": "false",
|
|
6844
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
6845
|
+
"fieldName": "reverse"
|
|
6821
6846
|
},
|
|
6822
6847
|
{
|
|
6823
6848
|
"name": "disable-polling",
|
|
@@ -6825,8 +6850,25 @@
|
|
|
6825
6850
|
"text": "boolean"
|
|
6826
6851
|
},
|
|
6827
6852
|
"default": "false",
|
|
6853
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
6828
6854
|
"fieldName": "disablePolling"
|
|
6829
6855
|
},
|
|
6856
|
+
{
|
|
6857
|
+
"name": "offset",
|
|
6858
|
+
"type": {
|
|
6859
|
+
"text": "number"
|
|
6860
|
+
},
|
|
6861
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
6862
|
+
"fieldName": "offset"
|
|
6863
|
+
},
|
|
6864
|
+
{
|
|
6865
|
+
"name": "polling-interval",
|
|
6866
|
+
"type": {
|
|
6867
|
+
"text": "number"
|
|
6868
|
+
},
|
|
6869
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
6870
|
+
"fieldName": "pollingInterval"
|
|
6871
|
+
},
|
|
6830
6872
|
{
|
|
6831
6873
|
"name": "request-auto-setup",
|
|
6832
6874
|
"type": {
|
|
@@ -7235,6 +7277,7 @@
|
|
|
7235
7277
|
"type": {
|
|
7236
7278
|
"text": "string"
|
|
7237
7279
|
},
|
|
7280
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
7238
7281
|
"inheritedFrom": {
|
|
7239
7282
|
"name": "GenesisGridDatasourceElement",
|
|
7240
7283
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7242,10 +7285,12 @@
|
|
|
7242
7285
|
},
|
|
7243
7286
|
{
|
|
7244
7287
|
"kind": "field",
|
|
7245
|
-
"name": "
|
|
7288
|
+
"name": "isSnapshot",
|
|
7246
7289
|
"type": {
|
|
7247
|
-
"text": "
|
|
7290
|
+
"text": "boolean"
|
|
7248
7291
|
},
|
|
7292
|
+
"default": "false",
|
|
7293
|
+
"description": "Request a snapshot from the server.",
|
|
7249
7294
|
"inheritedFrom": {
|
|
7250
7295
|
"name": "GenesisGridDatasourceElement",
|
|
7251
7296
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7253,11 +7298,11 @@
|
|
|
7253
7298
|
},
|
|
7254
7299
|
{
|
|
7255
7300
|
"kind": "field",
|
|
7256
|
-
"name": "
|
|
7301
|
+
"name": "maxRows",
|
|
7257
7302
|
"type": {
|
|
7258
|
-
"text": "
|
|
7303
|
+
"text": "number"
|
|
7259
7304
|
},
|
|
7260
|
-
"
|
|
7305
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
7261
7306
|
"inheritedFrom": {
|
|
7262
7307
|
"name": "GenesisGridDatasourceElement",
|
|
7263
7308
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7265,10 +7310,11 @@
|
|
|
7265
7310
|
},
|
|
7266
7311
|
{
|
|
7267
7312
|
"kind": "field",
|
|
7268
|
-
"name": "
|
|
7313
|
+
"name": "orderBy",
|
|
7269
7314
|
"type": {
|
|
7270
|
-
"text": "
|
|
7315
|
+
"text": "string"
|
|
7271
7316
|
},
|
|
7317
|
+
"description": "Option to select a Data Server index (defined in the Data Server query), which is especially useful if you want the data to be sorted in a specific way.",
|
|
7272
7318
|
"inheritedFrom": {
|
|
7273
7319
|
"name": "GenesisGridDatasourceElement",
|
|
7274
7320
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7276,10 +7322,11 @@
|
|
|
7276
7322
|
},
|
|
7277
7323
|
{
|
|
7278
7324
|
"kind": "field",
|
|
7279
|
-
"name": "
|
|
7325
|
+
"name": "resourceName",
|
|
7280
7326
|
"type": {
|
|
7281
|
-
"text": "
|
|
7327
|
+
"text": "string"
|
|
7282
7328
|
},
|
|
7329
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
7283
7330
|
"inheritedFrom": {
|
|
7284
7331
|
"name": "GenesisGridDatasourceElement",
|
|
7285
7332
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7287,11 +7334,11 @@
|
|
|
7287
7334
|
},
|
|
7288
7335
|
{
|
|
7289
7336
|
"kind": "field",
|
|
7290
|
-
"name": "
|
|
7337
|
+
"name": "viewNumber",
|
|
7291
7338
|
"type": {
|
|
7292
|
-
"text": "
|
|
7339
|
+
"text": "number"
|
|
7293
7340
|
},
|
|
7294
|
-
"
|
|
7341
|
+
"description": "The desired view/page you want data from.",
|
|
7295
7342
|
"inheritedFrom": {
|
|
7296
7343
|
"name": "GenesisGridDatasourceElement",
|
|
7297
7344
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7299,10 +7346,11 @@
|
|
|
7299
7346
|
},
|
|
7300
7347
|
{
|
|
7301
7348
|
"kind": "field",
|
|
7302
|
-
"name": "
|
|
7349
|
+
"name": "fields",
|
|
7303
7350
|
"type": {
|
|
7304
7351
|
"text": "string"
|
|
7305
7352
|
},
|
|
7353
|
+
"description": "Optional parameter that allows you to select a subset of fields from the query if the client is not interested in receiving all of them.",
|
|
7306
7354
|
"inheritedFrom": {
|
|
7307
7355
|
"name": "GenesisGridDatasourceElement",
|
|
7308
7356
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7310,10 +7358,24 @@
|
|
|
7310
7358
|
},
|
|
7311
7359
|
{
|
|
7312
7360
|
"kind": "field",
|
|
7313
|
-
"name": "
|
|
7361
|
+
"name": "maxView",
|
|
7314
7362
|
"type": {
|
|
7315
|
-
"text": "
|
|
7363
|
+
"text": "number"
|
|
7364
|
+
},
|
|
7365
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
7366
|
+
"inheritedFrom": {
|
|
7367
|
+
"name": "GenesisGridDatasourceElement",
|
|
7368
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7369
|
+
}
|
|
7370
|
+
},
|
|
7371
|
+
{
|
|
7372
|
+
"kind": "field",
|
|
7373
|
+
"name": "movingView",
|
|
7374
|
+
"type": {
|
|
7375
|
+
"text": "boolean"
|
|
7316
7376
|
},
|
|
7377
|
+
"default": "false",
|
|
7378
|
+
"description": "If true, when the maximum number of rows defined in max-view is reached, the Data Server will start discarding the oldest rows (in terms of timestamp) and sending newer rows.",
|
|
7317
7379
|
"inheritedFrom": {
|
|
7318
7380
|
"name": "GenesisGridDatasourceElement",
|
|
7319
7381
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7326,6 +7388,7 @@
|
|
|
7326
7388
|
"text": "boolean"
|
|
7327
7389
|
},
|
|
7328
7390
|
"default": "false",
|
|
7391
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
7329
7392
|
"inheritedFrom": {
|
|
7330
7393
|
"name": "GenesisGridDatasourceElement",
|
|
7331
7394
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7333,10 +7396,12 @@
|
|
|
7333
7396
|
},
|
|
7334
7397
|
{
|
|
7335
7398
|
"kind": "field",
|
|
7336
|
-
"name": "
|
|
7399
|
+
"name": "disablePolling",
|
|
7337
7400
|
"type": {
|
|
7338
|
-
"text": "
|
|
7401
|
+
"text": "boolean"
|
|
7339
7402
|
},
|
|
7403
|
+
"default": "false",
|
|
7404
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
7340
7405
|
"inheritedFrom": {
|
|
7341
7406
|
"name": "GenesisGridDatasourceElement",
|
|
7342
7407
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7344,10 +7409,11 @@
|
|
|
7344
7409
|
},
|
|
7345
7410
|
{
|
|
7346
7411
|
"kind": "field",
|
|
7347
|
-
"name": "
|
|
7412
|
+
"name": "offset",
|
|
7348
7413
|
"type": {
|
|
7349
7414
|
"text": "number"
|
|
7350
7415
|
},
|
|
7416
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
7351
7417
|
"inheritedFrom": {
|
|
7352
7418
|
"name": "GenesisGridDatasourceElement",
|
|
7353
7419
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7355,11 +7421,11 @@
|
|
|
7355
7421
|
},
|
|
7356
7422
|
{
|
|
7357
7423
|
"kind": "field",
|
|
7358
|
-
"name": "
|
|
7424
|
+
"name": "pollingInterval",
|
|
7359
7425
|
"type": {
|
|
7360
|
-
"text": "
|
|
7426
|
+
"text": "number"
|
|
7361
7427
|
},
|
|
7362
|
-
"
|
|
7428
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
7363
7429
|
"inheritedFrom": {
|
|
7364
7430
|
"name": "GenesisGridDatasourceElement",
|
|
7365
7431
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7367,11 +7433,12 @@
|
|
|
7367
7433
|
},
|
|
7368
7434
|
{
|
|
7369
7435
|
"kind": "field",
|
|
7370
|
-
"name": "
|
|
7436
|
+
"name": "pollTriggerEvents",
|
|
7371
7437
|
"type": {
|
|
7372
|
-
"text": "
|
|
7438
|
+
"text": "string[]"
|
|
7373
7439
|
},
|
|
7374
|
-
"default": "
|
|
7440
|
+
"default": "[]",
|
|
7441
|
+
"description": "Array of event names that will trigger a poll when received as commit responses.",
|
|
7375
7442
|
"inheritedFrom": {
|
|
7376
7443
|
"name": "GenesisGridDatasourceElement",
|
|
7377
7444
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7383,6 +7450,7 @@
|
|
|
7383
7450
|
"type": {
|
|
7384
7451
|
"text": "any"
|
|
7385
7452
|
},
|
|
7453
|
+
"description": "Similar to fields but for Request Server scenarios. This optional parameter enables you to specify request fields, which can include wildcards.",
|
|
7386
7454
|
"inheritedFrom": {
|
|
7387
7455
|
"name": "GenesisGridDatasourceElement",
|
|
7388
7456
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7736,29 +7804,20 @@
|
|
|
7736
7804
|
"type": {
|
|
7737
7805
|
"text": "string"
|
|
7738
7806
|
},
|
|
7807
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
7739
7808
|
"fieldName": "criteria",
|
|
7740
7809
|
"inheritedFrom": {
|
|
7741
7810
|
"name": "GenesisGridDatasourceElement",
|
|
7742
7811
|
"module": "src/datasource/base.datasource.ts"
|
|
7743
7812
|
}
|
|
7744
7813
|
},
|
|
7745
|
-
{
|
|
7746
|
-
"name": "fields",
|
|
7747
|
-
"type": {
|
|
7748
|
-
"text": "string"
|
|
7749
|
-
},
|
|
7750
|
-
"fieldName": "fields",
|
|
7751
|
-
"inheritedFrom": {
|
|
7752
|
-
"name": "GenesisGridDatasourceElement",
|
|
7753
|
-
"module": "src/datasource/base.datasource.ts"
|
|
7754
|
-
}
|
|
7755
|
-
},
|
|
7756
7814
|
{
|
|
7757
7815
|
"name": "is-snapshot",
|
|
7758
7816
|
"type": {
|
|
7759
7817
|
"text": "boolean"
|
|
7760
7818
|
},
|
|
7761
7819
|
"default": "false",
|
|
7820
|
+
"description": "Request a snapshot from the server.",
|
|
7762
7821
|
"fieldName": "isSnapshot",
|
|
7763
7822
|
"inheritedFrom": {
|
|
7764
7823
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -7770,6 +7829,7 @@
|
|
|
7770
7829
|
"type": {
|
|
7771
7830
|
"text": "number"
|
|
7772
7831
|
},
|
|
7832
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
7773
7833
|
"fieldName": "maxRows",
|
|
7774
7834
|
"inheritedFrom": {
|
|
7775
7835
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -7777,78 +7837,85 @@
|
|
|
7777
7837
|
}
|
|
7778
7838
|
},
|
|
7779
7839
|
{
|
|
7780
|
-
"name": "
|
|
7840
|
+
"name": "order-by",
|
|
7781
7841
|
"type": {
|
|
7782
|
-
"text": "
|
|
7842
|
+
"text": "string"
|
|
7783
7843
|
},
|
|
7784
|
-
"
|
|
7844
|
+
"description": "Option to select a Data Server index (defined in the Data Server query), which is especially useful if you want the data to be sorted in a specific way.",
|
|
7845
|
+
"fieldName": "orderBy",
|
|
7785
7846
|
"inheritedFrom": {
|
|
7786
7847
|
"name": "GenesisGridDatasourceElement",
|
|
7787
7848
|
"module": "src/datasource/base.datasource.ts"
|
|
7788
7849
|
}
|
|
7789
7850
|
},
|
|
7790
7851
|
{
|
|
7791
|
-
"name": "
|
|
7852
|
+
"name": "resource-name",
|
|
7792
7853
|
"type": {
|
|
7793
|
-
"text": "
|
|
7854
|
+
"text": "string"
|
|
7794
7855
|
},
|
|
7795
|
-
"
|
|
7796
|
-
"fieldName": "
|
|
7856
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
7857
|
+
"fieldName": "resourceName",
|
|
7797
7858
|
"inheritedFrom": {
|
|
7798
7859
|
"name": "GenesisGridDatasourceElement",
|
|
7799
7860
|
"module": "src/datasource/base.datasource.ts"
|
|
7800
7861
|
}
|
|
7801
7862
|
},
|
|
7802
7863
|
{
|
|
7803
|
-
"name": "
|
|
7864
|
+
"name": "view-number",
|
|
7804
7865
|
"type": {
|
|
7805
|
-
"text": "
|
|
7866
|
+
"text": "number"
|
|
7806
7867
|
},
|
|
7807
|
-
"
|
|
7868
|
+
"description": "The desired view/page you want data from.",
|
|
7869
|
+
"fieldName": "viewNumber",
|
|
7808
7870
|
"inheritedFrom": {
|
|
7809
7871
|
"name": "GenesisGridDatasourceElement",
|
|
7810
7872
|
"module": "src/datasource/base.datasource.ts"
|
|
7811
7873
|
}
|
|
7812
7874
|
},
|
|
7813
7875
|
{
|
|
7814
|
-
"name": "
|
|
7876
|
+
"name": "fields",
|
|
7815
7877
|
"type": {
|
|
7816
7878
|
"text": "string"
|
|
7817
7879
|
},
|
|
7818
|
-
"
|
|
7880
|
+
"description": "Optional parameter that allows you to select a subset of fields from the query if the client is not interested in receiving all of them.",
|
|
7881
|
+
"fieldName": "fields",
|
|
7819
7882
|
"inheritedFrom": {
|
|
7820
7883
|
"name": "GenesisGridDatasourceElement",
|
|
7821
7884
|
"module": "src/datasource/base.datasource.ts"
|
|
7822
7885
|
}
|
|
7823
7886
|
},
|
|
7824
7887
|
{
|
|
7888
|
+
"name": "max-view",
|
|
7825
7889
|
"type": {
|
|
7826
|
-
"text": "
|
|
7890
|
+
"text": "number"
|
|
7827
7891
|
},
|
|
7828
|
-
"
|
|
7829
|
-
"fieldName": "
|
|
7892
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
7893
|
+
"fieldName": "maxView",
|
|
7830
7894
|
"inheritedFrom": {
|
|
7831
7895
|
"name": "GenesisGridDatasourceElement",
|
|
7832
7896
|
"module": "src/datasource/base.datasource.ts"
|
|
7833
7897
|
}
|
|
7834
7898
|
},
|
|
7835
7899
|
{
|
|
7836
|
-
"name": "view
|
|
7900
|
+
"name": "moving-view",
|
|
7837
7901
|
"type": {
|
|
7838
|
-
"text": "
|
|
7902
|
+
"text": "boolean"
|
|
7839
7903
|
},
|
|
7840
|
-
"
|
|
7904
|
+
"default": "false",
|
|
7905
|
+
"description": "If true, when the maximum number of rows defined in max-view is reached, the Data Server will start discarding the oldest rows (in terms of timestamp) and sending newer rows.",
|
|
7906
|
+
"fieldName": "movingView",
|
|
7841
7907
|
"inheritedFrom": {
|
|
7842
7908
|
"name": "GenesisGridDatasourceElement",
|
|
7843
7909
|
"module": "src/datasource/base.datasource.ts"
|
|
7844
7910
|
}
|
|
7845
7911
|
},
|
|
7846
7912
|
{
|
|
7847
|
-
"name": "polling-interval",
|
|
7848
7913
|
"type": {
|
|
7849
|
-
"text": "
|
|
7914
|
+
"text": "boolean"
|
|
7850
7915
|
},
|
|
7851
|
-
"
|
|
7916
|
+
"default": "false",
|
|
7917
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
7918
|
+
"fieldName": "reverse",
|
|
7852
7919
|
"inheritedFrom": {
|
|
7853
7920
|
"name": "GenesisGridDatasourceElement",
|
|
7854
7921
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7860,6 +7927,7 @@
|
|
|
7860
7927
|
"text": "boolean"
|
|
7861
7928
|
},
|
|
7862
7929
|
"default": "false",
|
|
7930
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
7863
7931
|
"fieldName": "disablePolling",
|
|
7864
7932
|
"inheritedFrom": {
|
|
7865
7933
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -7867,23 +7935,47 @@
|
|
|
7867
7935
|
}
|
|
7868
7936
|
},
|
|
7869
7937
|
{
|
|
7870
|
-
"name": "
|
|
7938
|
+
"name": "offset",
|
|
7871
7939
|
"type": {
|
|
7872
|
-
"text": "
|
|
7940
|
+
"text": "number"
|
|
7873
7941
|
},
|
|
7874
|
-
"
|
|
7875
|
-
"
|
|
7876
|
-
"fieldName": "requestAutoSetup",
|
|
7942
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
7943
|
+
"fieldName": "offset",
|
|
7877
7944
|
"inheritedFrom": {
|
|
7878
7945
|
"name": "GenesisGridDatasourceElement",
|
|
7879
7946
|
"module": "src/datasource/base.datasource.ts"
|
|
7880
7947
|
}
|
|
7881
7948
|
},
|
|
7882
7949
|
{
|
|
7883
|
-
"name": "
|
|
7884
|
-
"
|
|
7885
|
-
|
|
7886
|
-
|
|
7950
|
+
"name": "polling-interval",
|
|
7951
|
+
"type": {
|
|
7952
|
+
"text": "number"
|
|
7953
|
+
},
|
|
7954
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
7955
|
+
"fieldName": "pollingInterval",
|
|
7956
|
+
"inheritedFrom": {
|
|
7957
|
+
"name": "GenesisGridDatasourceElement",
|
|
7958
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7959
|
+
}
|
|
7960
|
+
},
|
|
7961
|
+
{
|
|
7962
|
+
"name": "request-auto-setup",
|
|
7963
|
+
"type": {
|
|
7964
|
+
"text": "boolean"
|
|
7965
|
+
},
|
|
7966
|
+
"default": "true",
|
|
7967
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
7968
|
+
"fieldName": "requestAutoSetup",
|
|
7969
|
+
"inheritedFrom": {
|
|
7970
|
+
"name": "GenesisGridDatasourceElement",
|
|
7971
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7972
|
+
}
|
|
7973
|
+
},
|
|
7974
|
+
{
|
|
7975
|
+
"name": "row-id",
|
|
7976
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
7977
|
+
"fieldName": "rowIdAttr",
|
|
7978
|
+
"inheritedFrom": {
|
|
7887
7979
|
"name": "GenesisGridDatasourceElement",
|
|
7888
7980
|
"module": "src/datasource/base.datasource.ts"
|
|
7889
7981
|
}
|
|
@@ -8256,6 +8348,32 @@
|
|
|
8256
8348
|
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
8257
8349
|
}
|
|
8258
8350
|
},
|
|
8351
|
+
{
|
|
8352
|
+
"kind": "field",
|
|
8353
|
+
"name": "_nextOffset",
|
|
8354
|
+
"type": {
|
|
8355
|
+
"text": "number"
|
|
8356
|
+
},
|
|
8357
|
+
"privacy": "private",
|
|
8358
|
+
"default": "0",
|
|
8359
|
+
"inheritedFrom": {
|
|
8360
|
+
"name": "GridProGenesisDatasource",
|
|
8361
|
+
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
8362
|
+
}
|
|
8363
|
+
},
|
|
8364
|
+
{
|
|
8365
|
+
"kind": "field",
|
|
8366
|
+
"name": "_loadMoreCount",
|
|
8367
|
+
"type": {
|
|
8368
|
+
"text": "number"
|
|
8369
|
+
},
|
|
8370
|
+
"privacy": "private",
|
|
8371
|
+
"default": "0",
|
|
8372
|
+
"inheritedFrom": {
|
|
8373
|
+
"name": "GridProGenesisDatasource",
|
|
8374
|
+
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
8375
|
+
}
|
|
8376
|
+
},
|
|
8259
8377
|
{
|
|
8260
8378
|
"kind": "method",
|
|
8261
8379
|
"name": "colDefsDeepClone",
|
|
@@ -8971,6 +9089,7 @@
|
|
|
8971
9089
|
"type": {
|
|
8972
9090
|
"text": "string"
|
|
8973
9091
|
},
|
|
9092
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
8974
9093
|
"inheritedFrom": {
|
|
8975
9094
|
"name": "GenesisGridDatasourceElement",
|
|
8976
9095
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -8978,10 +9097,12 @@
|
|
|
8978
9097
|
},
|
|
8979
9098
|
{
|
|
8980
9099
|
"kind": "field",
|
|
8981
|
-
"name": "
|
|
9100
|
+
"name": "isSnapshot",
|
|
8982
9101
|
"type": {
|
|
8983
|
-
"text": "
|
|
9102
|
+
"text": "boolean"
|
|
8984
9103
|
},
|
|
9104
|
+
"default": "false",
|
|
9105
|
+
"description": "Request a snapshot from the server.",
|
|
8985
9106
|
"inheritedFrom": {
|
|
8986
9107
|
"name": "GenesisGridDatasourceElement",
|
|
8987
9108
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -8989,11 +9110,11 @@
|
|
|
8989
9110
|
},
|
|
8990
9111
|
{
|
|
8991
9112
|
"kind": "field",
|
|
8992
|
-
"name": "
|
|
9113
|
+
"name": "maxRows",
|
|
8993
9114
|
"type": {
|
|
8994
|
-
"text": "
|
|
9115
|
+
"text": "number"
|
|
8995
9116
|
},
|
|
8996
|
-
"
|
|
9117
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
8997
9118
|
"inheritedFrom": {
|
|
8998
9119
|
"name": "GenesisGridDatasourceElement",
|
|
8999
9120
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9001,10 +9122,11 @@
|
|
|
9001
9122
|
},
|
|
9002
9123
|
{
|
|
9003
9124
|
"kind": "field",
|
|
9004
|
-
"name": "
|
|
9125
|
+
"name": "orderBy",
|
|
9005
9126
|
"type": {
|
|
9006
|
-
"text": "
|
|
9127
|
+
"text": "string"
|
|
9007
9128
|
},
|
|
9129
|
+
"description": "Option to select a Data Server index (defined in the Data Server query), which is especially useful if you want the data to be sorted in a specific way.",
|
|
9008
9130
|
"inheritedFrom": {
|
|
9009
9131
|
"name": "GenesisGridDatasourceElement",
|
|
9010
9132
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9012,10 +9134,11 @@
|
|
|
9012
9134
|
},
|
|
9013
9135
|
{
|
|
9014
9136
|
"kind": "field",
|
|
9015
|
-
"name": "
|
|
9137
|
+
"name": "resourceName",
|
|
9016
9138
|
"type": {
|
|
9017
|
-
"text": "
|
|
9139
|
+
"text": "string"
|
|
9018
9140
|
},
|
|
9141
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
9019
9142
|
"inheritedFrom": {
|
|
9020
9143
|
"name": "GenesisGridDatasourceElement",
|
|
9021
9144
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9023,11 +9146,11 @@
|
|
|
9023
9146
|
},
|
|
9024
9147
|
{
|
|
9025
9148
|
"kind": "field",
|
|
9026
|
-
"name": "
|
|
9149
|
+
"name": "viewNumber",
|
|
9027
9150
|
"type": {
|
|
9028
|
-
"text": "
|
|
9151
|
+
"text": "number"
|
|
9029
9152
|
},
|
|
9030
|
-
"
|
|
9153
|
+
"description": "The desired view/page you want data from.",
|
|
9031
9154
|
"inheritedFrom": {
|
|
9032
9155
|
"name": "GenesisGridDatasourceElement",
|
|
9033
9156
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9035,10 +9158,11 @@
|
|
|
9035
9158
|
},
|
|
9036
9159
|
{
|
|
9037
9160
|
"kind": "field",
|
|
9038
|
-
"name": "
|
|
9161
|
+
"name": "fields",
|
|
9039
9162
|
"type": {
|
|
9040
9163
|
"text": "string"
|
|
9041
9164
|
},
|
|
9165
|
+
"description": "Optional parameter that allows you to select a subset of fields from the query if the client is not interested in receiving all of them.",
|
|
9042
9166
|
"inheritedFrom": {
|
|
9043
9167
|
"name": "GenesisGridDatasourceElement",
|
|
9044
9168
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9046,10 +9170,24 @@
|
|
|
9046
9170
|
},
|
|
9047
9171
|
{
|
|
9048
9172
|
"kind": "field",
|
|
9049
|
-
"name": "
|
|
9173
|
+
"name": "maxView",
|
|
9050
9174
|
"type": {
|
|
9051
|
-
"text": "
|
|
9175
|
+
"text": "number"
|
|
9176
|
+
},
|
|
9177
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
9178
|
+
"inheritedFrom": {
|
|
9179
|
+
"name": "GenesisGridDatasourceElement",
|
|
9180
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9181
|
+
}
|
|
9182
|
+
},
|
|
9183
|
+
{
|
|
9184
|
+
"kind": "field",
|
|
9185
|
+
"name": "movingView",
|
|
9186
|
+
"type": {
|
|
9187
|
+
"text": "boolean"
|
|
9052
9188
|
},
|
|
9189
|
+
"default": "false",
|
|
9190
|
+
"description": "If true, when the maximum number of rows defined in max-view is reached, the Data Server will start discarding the oldest rows (in terms of timestamp) and sending newer rows.",
|
|
9053
9191
|
"inheritedFrom": {
|
|
9054
9192
|
"name": "GenesisGridDatasourceElement",
|
|
9055
9193
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9062,6 +9200,7 @@
|
|
|
9062
9200
|
"text": "boolean"
|
|
9063
9201
|
},
|
|
9064
9202
|
"default": "false",
|
|
9203
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
9065
9204
|
"inheritedFrom": {
|
|
9066
9205
|
"name": "GenesisGridDatasourceElement",
|
|
9067
9206
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9069,10 +9208,12 @@
|
|
|
9069
9208
|
},
|
|
9070
9209
|
{
|
|
9071
9210
|
"kind": "field",
|
|
9072
|
-
"name": "
|
|
9211
|
+
"name": "disablePolling",
|
|
9073
9212
|
"type": {
|
|
9074
|
-
"text": "
|
|
9213
|
+
"text": "boolean"
|
|
9075
9214
|
},
|
|
9215
|
+
"default": "false",
|
|
9216
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
9076
9217
|
"inheritedFrom": {
|
|
9077
9218
|
"name": "GenesisGridDatasourceElement",
|
|
9078
9219
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9080,10 +9221,11 @@
|
|
|
9080
9221
|
},
|
|
9081
9222
|
{
|
|
9082
9223
|
"kind": "field",
|
|
9083
|
-
"name": "
|
|
9224
|
+
"name": "offset",
|
|
9084
9225
|
"type": {
|
|
9085
9226
|
"text": "number"
|
|
9086
9227
|
},
|
|
9228
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
9087
9229
|
"inheritedFrom": {
|
|
9088
9230
|
"name": "GenesisGridDatasourceElement",
|
|
9089
9231
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9091,11 +9233,11 @@
|
|
|
9091
9233
|
},
|
|
9092
9234
|
{
|
|
9093
9235
|
"kind": "field",
|
|
9094
|
-
"name": "
|
|
9236
|
+
"name": "pollingInterval",
|
|
9095
9237
|
"type": {
|
|
9096
|
-
"text": "
|
|
9238
|
+
"text": "number"
|
|
9097
9239
|
},
|
|
9098
|
-
"
|
|
9240
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
9099
9241
|
"inheritedFrom": {
|
|
9100
9242
|
"name": "GenesisGridDatasourceElement",
|
|
9101
9243
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9103,11 +9245,12 @@
|
|
|
9103
9245
|
},
|
|
9104
9246
|
{
|
|
9105
9247
|
"kind": "field",
|
|
9106
|
-
"name": "
|
|
9248
|
+
"name": "pollTriggerEvents",
|
|
9107
9249
|
"type": {
|
|
9108
|
-
"text": "
|
|
9250
|
+
"text": "string[]"
|
|
9109
9251
|
},
|
|
9110
|
-
"default": "
|
|
9252
|
+
"default": "[]",
|
|
9253
|
+
"description": "Array of event names that will trigger a poll when received as commit responses.",
|
|
9111
9254
|
"inheritedFrom": {
|
|
9112
9255
|
"name": "GenesisGridDatasourceElement",
|
|
9113
9256
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9119,6 +9262,7 @@
|
|
|
9119
9262
|
"type": {
|
|
9120
9263
|
"text": "any"
|
|
9121
9264
|
},
|
|
9265
|
+
"description": "Similar to fields but for Request Server scenarios. This optional parameter enables you to specify request fields, which can include wildcards.",
|
|
9122
9266
|
"inheritedFrom": {
|
|
9123
9267
|
"name": "GenesisGridDatasourceElement",
|
|
9124
9268
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9440,6 +9584,7 @@
|
|
|
9440
9584
|
"type": {
|
|
9441
9585
|
"text": "string"
|
|
9442
9586
|
},
|
|
9587
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
9443
9588
|
"fieldName": "criteria",
|
|
9444
9589
|
"inheritedFrom": {
|
|
9445
9590
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -9447,79 +9592,98 @@
|
|
|
9447
9592
|
}
|
|
9448
9593
|
},
|
|
9449
9594
|
{
|
|
9450
|
-
"name": "
|
|
9595
|
+
"name": "is-snapshot",
|
|
9451
9596
|
"type": {
|
|
9452
|
-
"text": "
|
|
9597
|
+
"text": "boolean"
|
|
9453
9598
|
},
|
|
9454
|
-
"
|
|
9599
|
+
"default": "false",
|
|
9600
|
+
"description": "Request a snapshot from the server.",
|
|
9601
|
+
"fieldName": "isSnapshot",
|
|
9455
9602
|
"inheritedFrom": {
|
|
9456
9603
|
"name": "GenesisGridDatasourceElement",
|
|
9457
9604
|
"module": "src/datasource/base.datasource.ts"
|
|
9458
9605
|
}
|
|
9459
9606
|
},
|
|
9460
9607
|
{
|
|
9461
|
-
"name": "
|
|
9608
|
+
"name": "max-rows",
|
|
9462
9609
|
"type": {
|
|
9463
|
-
"text": "
|
|
9610
|
+
"text": "number"
|
|
9464
9611
|
},
|
|
9465
|
-
"
|
|
9466
|
-
"fieldName": "
|
|
9612
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
9613
|
+
"fieldName": "maxRows",
|
|
9467
9614
|
"inheritedFrom": {
|
|
9468
9615
|
"name": "GenesisGridDatasourceElement",
|
|
9469
9616
|
"module": "src/datasource/base.datasource.ts"
|
|
9470
9617
|
}
|
|
9471
9618
|
},
|
|
9472
9619
|
{
|
|
9473
|
-
"name": "
|
|
9620
|
+
"name": "order-by",
|
|
9474
9621
|
"type": {
|
|
9475
|
-
"text": "
|
|
9622
|
+
"text": "string"
|
|
9476
9623
|
},
|
|
9477
|
-
"
|
|
9624
|
+
"description": "Option to select a Data Server index (defined in the Data Server query), which is especially useful if you want the data to be sorted in a specific way.",
|
|
9625
|
+
"fieldName": "orderBy",
|
|
9478
9626
|
"inheritedFrom": {
|
|
9479
9627
|
"name": "GenesisGridDatasourceElement",
|
|
9480
9628
|
"module": "src/datasource/base.datasource.ts"
|
|
9481
9629
|
}
|
|
9482
9630
|
},
|
|
9483
9631
|
{
|
|
9484
|
-
"name": "
|
|
9632
|
+
"name": "resource-name",
|
|
9485
9633
|
"type": {
|
|
9486
|
-
"text": "
|
|
9634
|
+
"text": "string"
|
|
9487
9635
|
},
|
|
9488
|
-
"
|
|
9636
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
9637
|
+
"fieldName": "resourceName",
|
|
9489
9638
|
"inheritedFrom": {
|
|
9490
9639
|
"name": "GenesisGridDatasourceElement",
|
|
9491
9640
|
"module": "src/datasource/base.datasource.ts"
|
|
9492
9641
|
}
|
|
9493
9642
|
},
|
|
9494
9643
|
{
|
|
9495
|
-
"name": "
|
|
9644
|
+
"name": "view-number",
|
|
9496
9645
|
"type": {
|
|
9497
|
-
"text": "
|
|
9646
|
+
"text": "number"
|
|
9498
9647
|
},
|
|
9499
|
-
"
|
|
9500
|
-
"fieldName": "
|
|
9648
|
+
"description": "The desired view/page you want data from.",
|
|
9649
|
+
"fieldName": "viewNumber",
|
|
9501
9650
|
"inheritedFrom": {
|
|
9502
9651
|
"name": "GenesisGridDatasourceElement",
|
|
9503
9652
|
"module": "src/datasource/base.datasource.ts"
|
|
9504
9653
|
}
|
|
9505
9654
|
},
|
|
9506
9655
|
{
|
|
9507
|
-
"name": "
|
|
9656
|
+
"name": "fields",
|
|
9508
9657
|
"type": {
|
|
9509
9658
|
"text": "string"
|
|
9510
9659
|
},
|
|
9511
|
-
"
|
|
9660
|
+
"description": "Optional parameter that allows you to select a subset of fields from the query if the client is not interested in receiving all of them.",
|
|
9661
|
+
"fieldName": "fields",
|
|
9512
9662
|
"inheritedFrom": {
|
|
9513
9663
|
"name": "GenesisGridDatasourceElement",
|
|
9514
9664
|
"module": "src/datasource/base.datasource.ts"
|
|
9515
9665
|
}
|
|
9516
9666
|
},
|
|
9517
9667
|
{
|
|
9518
|
-
"name": "
|
|
9668
|
+
"name": "max-view",
|
|
9519
9669
|
"type": {
|
|
9520
|
-
"text": "
|
|
9670
|
+
"text": "number"
|
|
9521
9671
|
},
|
|
9522
|
-
"
|
|
9672
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
9673
|
+
"fieldName": "maxView",
|
|
9674
|
+
"inheritedFrom": {
|
|
9675
|
+
"name": "GenesisGridDatasourceElement",
|
|
9676
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9677
|
+
}
|
|
9678
|
+
},
|
|
9679
|
+
{
|
|
9680
|
+
"name": "moving-view",
|
|
9681
|
+
"type": {
|
|
9682
|
+
"text": "boolean"
|
|
9683
|
+
},
|
|
9684
|
+
"default": "false",
|
|
9685
|
+
"description": "If true, when the maximum number of rows defined in max-view is reached, the Data Server will start discarding the oldest rows (in terms of timestamp) and sending newer rows.",
|
|
9686
|
+
"fieldName": "movingView",
|
|
9523
9687
|
"inheritedFrom": {
|
|
9524
9688
|
"name": "GenesisGridDatasourceElement",
|
|
9525
9689
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9530,6 +9694,7 @@
|
|
|
9530
9694
|
"text": "boolean"
|
|
9531
9695
|
},
|
|
9532
9696
|
"default": "false",
|
|
9697
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
9533
9698
|
"fieldName": "reverse",
|
|
9534
9699
|
"inheritedFrom": {
|
|
9535
9700
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -9537,34 +9702,37 @@
|
|
|
9537
9702
|
}
|
|
9538
9703
|
},
|
|
9539
9704
|
{
|
|
9540
|
-
"name": "
|
|
9705
|
+
"name": "disable-polling",
|
|
9541
9706
|
"type": {
|
|
9542
|
-
"text": "
|
|
9707
|
+
"text": "boolean"
|
|
9543
9708
|
},
|
|
9544
|
-
"
|
|
9709
|
+
"default": "false",
|
|
9710
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
9711
|
+
"fieldName": "disablePolling",
|
|
9545
9712
|
"inheritedFrom": {
|
|
9546
9713
|
"name": "GenesisGridDatasourceElement",
|
|
9547
9714
|
"module": "src/datasource/base.datasource.ts"
|
|
9548
9715
|
}
|
|
9549
9716
|
},
|
|
9550
9717
|
{
|
|
9551
|
-
"name": "
|
|
9718
|
+
"name": "offset",
|
|
9552
9719
|
"type": {
|
|
9553
9720
|
"text": "number"
|
|
9554
9721
|
},
|
|
9555
|
-
"
|
|
9722
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
9723
|
+
"fieldName": "offset",
|
|
9556
9724
|
"inheritedFrom": {
|
|
9557
9725
|
"name": "GenesisGridDatasourceElement",
|
|
9558
9726
|
"module": "src/datasource/base.datasource.ts"
|
|
9559
9727
|
}
|
|
9560
9728
|
},
|
|
9561
9729
|
{
|
|
9562
|
-
"name": "
|
|
9730
|
+
"name": "polling-interval",
|
|
9563
9731
|
"type": {
|
|
9564
|
-
"text": "
|
|
9732
|
+
"text": "number"
|
|
9565
9733
|
},
|
|
9566
|
-
"
|
|
9567
|
-
"fieldName": "
|
|
9734
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
9735
|
+
"fieldName": "pollingInterval",
|
|
9568
9736
|
"inheritedFrom": {
|
|
9569
9737
|
"name": "GenesisGridDatasourceElement",
|
|
9570
9738
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9807,12 +9975,21 @@
|
|
|
9807
9975
|
"default": "false",
|
|
9808
9976
|
"description": "Enable live updates for the grid."
|
|
9809
9977
|
},
|
|
9978
|
+
{
|
|
9979
|
+
"kind": "field",
|
|
9980
|
+
"name": "pagingMode",
|
|
9981
|
+
"type": {
|
|
9982
|
+
"text": "PagingMode | undefined"
|
|
9983
|
+
},
|
|
9984
|
+
"description": "The paging mode to use for data fetching."
|
|
9985
|
+
},
|
|
9810
9986
|
{
|
|
9811
9987
|
"kind": "field",
|
|
9812
9988
|
"name": "request",
|
|
9813
9989
|
"type": {
|
|
9814
9990
|
"text": "any"
|
|
9815
9991
|
},
|
|
9992
|
+
"description": "Similar to fields but for Request Server scenarios. This optional parameter enables you to specify request fields, which can include wildcards.",
|
|
9816
9993
|
"inheritedFrom": {
|
|
9817
9994
|
"name": "GenesisGridDatasourceElement",
|
|
9818
9995
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9985,11 +10162,6 @@
|
|
|
9985
10162
|
}
|
|
9986
10163
|
]
|
|
9987
10164
|
},
|
|
9988
|
-
{
|
|
9989
|
-
"kind": "field",
|
|
9990
|
-
"name": "params",
|
|
9991
|
-
"readonly": true
|
|
9992
|
-
},
|
|
9993
10165
|
{
|
|
9994
10166
|
"kind": "field",
|
|
9995
10167
|
"name": "rowModel",
|
|
@@ -10543,6 +10715,7 @@
|
|
|
10543
10715
|
"type": {
|
|
10544
10716
|
"text": "string"
|
|
10545
10717
|
},
|
|
10718
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
10546
10719
|
"inheritedFrom": {
|
|
10547
10720
|
"name": "GenesisGridDatasourceElement",
|
|
10548
10721
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10550,10 +10723,12 @@
|
|
|
10550
10723
|
},
|
|
10551
10724
|
{
|
|
10552
10725
|
"kind": "field",
|
|
10553
|
-
"name": "
|
|
10726
|
+
"name": "isSnapshot",
|
|
10554
10727
|
"type": {
|
|
10555
|
-
"text": "
|
|
10728
|
+
"text": "boolean"
|
|
10556
10729
|
},
|
|
10730
|
+
"default": "false",
|
|
10731
|
+
"description": "Request a snapshot from the server.",
|
|
10557
10732
|
"inheritedFrom": {
|
|
10558
10733
|
"name": "GenesisGridDatasourceElement",
|
|
10559
10734
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10561,11 +10736,11 @@
|
|
|
10561
10736
|
},
|
|
10562
10737
|
{
|
|
10563
10738
|
"kind": "field",
|
|
10564
|
-
"name": "
|
|
10739
|
+
"name": "maxRows",
|
|
10565
10740
|
"type": {
|
|
10566
|
-
"text": "
|
|
10741
|
+
"text": "number"
|
|
10567
10742
|
},
|
|
10568
|
-
"
|
|
10743
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
10569
10744
|
"inheritedFrom": {
|
|
10570
10745
|
"name": "GenesisGridDatasourceElement",
|
|
10571
10746
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10573,10 +10748,11 @@
|
|
|
10573
10748
|
},
|
|
10574
10749
|
{
|
|
10575
10750
|
"kind": "field",
|
|
10576
|
-
"name": "
|
|
10751
|
+
"name": "orderBy",
|
|
10577
10752
|
"type": {
|
|
10578
|
-
"text": "
|
|
10753
|
+
"text": "string"
|
|
10579
10754
|
},
|
|
10755
|
+
"description": "Option to select a Data Server index (defined in the Data Server query), which is especially useful if you want the data to be sorted in a specific way.",
|
|
10580
10756
|
"inheritedFrom": {
|
|
10581
10757
|
"name": "GenesisGridDatasourceElement",
|
|
10582
10758
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10584,10 +10760,11 @@
|
|
|
10584
10760
|
},
|
|
10585
10761
|
{
|
|
10586
10762
|
"kind": "field",
|
|
10587
|
-
"name": "
|
|
10763
|
+
"name": "resourceName",
|
|
10588
10764
|
"type": {
|
|
10589
|
-
"text": "
|
|
10765
|
+
"text": "string"
|
|
10590
10766
|
},
|
|
10767
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
10591
10768
|
"inheritedFrom": {
|
|
10592
10769
|
"name": "GenesisGridDatasourceElement",
|
|
10593
10770
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10595,11 +10772,11 @@
|
|
|
10595
10772
|
},
|
|
10596
10773
|
{
|
|
10597
10774
|
"kind": "field",
|
|
10598
|
-
"name": "
|
|
10775
|
+
"name": "viewNumber",
|
|
10599
10776
|
"type": {
|
|
10600
|
-
"text": "
|
|
10777
|
+
"text": "number"
|
|
10601
10778
|
},
|
|
10602
|
-
"
|
|
10779
|
+
"description": "The desired view/page you want data from.",
|
|
10603
10780
|
"inheritedFrom": {
|
|
10604
10781
|
"name": "GenesisGridDatasourceElement",
|
|
10605
10782
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10607,10 +10784,11 @@
|
|
|
10607
10784
|
},
|
|
10608
10785
|
{
|
|
10609
10786
|
"kind": "field",
|
|
10610
|
-
"name": "
|
|
10787
|
+
"name": "fields",
|
|
10611
10788
|
"type": {
|
|
10612
10789
|
"text": "string"
|
|
10613
10790
|
},
|
|
10791
|
+
"description": "Optional parameter that allows you to select a subset of fields from the query if the client is not interested in receiving all of them.",
|
|
10614
10792
|
"inheritedFrom": {
|
|
10615
10793
|
"name": "GenesisGridDatasourceElement",
|
|
10616
10794
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10618,10 +10796,24 @@
|
|
|
10618
10796
|
},
|
|
10619
10797
|
{
|
|
10620
10798
|
"kind": "field",
|
|
10621
|
-
"name": "
|
|
10799
|
+
"name": "maxView",
|
|
10622
10800
|
"type": {
|
|
10623
|
-
"text": "
|
|
10801
|
+
"text": "number"
|
|
10802
|
+
},
|
|
10803
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
10804
|
+
"inheritedFrom": {
|
|
10805
|
+
"name": "GenesisGridDatasourceElement",
|
|
10806
|
+
"module": "src/datasource/base.datasource.ts"
|
|
10807
|
+
}
|
|
10808
|
+
},
|
|
10809
|
+
{
|
|
10810
|
+
"kind": "field",
|
|
10811
|
+
"name": "movingView",
|
|
10812
|
+
"type": {
|
|
10813
|
+
"text": "boolean"
|
|
10624
10814
|
},
|
|
10815
|
+
"default": "false",
|
|
10816
|
+
"description": "If true, when the maximum number of rows defined in max-view is reached, the Data Server will start discarding the oldest rows (in terms of timestamp) and sending newer rows.",
|
|
10625
10817
|
"inheritedFrom": {
|
|
10626
10818
|
"name": "GenesisGridDatasourceElement",
|
|
10627
10819
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10634,6 +10826,7 @@
|
|
|
10634
10826
|
"text": "boolean"
|
|
10635
10827
|
},
|
|
10636
10828
|
"default": "false",
|
|
10829
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
10637
10830
|
"inheritedFrom": {
|
|
10638
10831
|
"name": "GenesisGridDatasourceElement",
|
|
10639
10832
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10641,10 +10834,12 @@
|
|
|
10641
10834
|
},
|
|
10642
10835
|
{
|
|
10643
10836
|
"kind": "field",
|
|
10644
|
-
"name": "
|
|
10837
|
+
"name": "disablePolling",
|
|
10645
10838
|
"type": {
|
|
10646
|
-
"text": "
|
|
10839
|
+
"text": "boolean"
|
|
10647
10840
|
},
|
|
10841
|
+
"default": "false",
|
|
10842
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
10648
10843
|
"inheritedFrom": {
|
|
10649
10844
|
"name": "GenesisGridDatasourceElement",
|
|
10650
10845
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10652,10 +10847,11 @@
|
|
|
10652
10847
|
},
|
|
10653
10848
|
{
|
|
10654
10849
|
"kind": "field",
|
|
10655
|
-
"name": "
|
|
10850
|
+
"name": "offset",
|
|
10656
10851
|
"type": {
|
|
10657
10852
|
"text": "number"
|
|
10658
10853
|
},
|
|
10854
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
10659
10855
|
"inheritedFrom": {
|
|
10660
10856
|
"name": "GenesisGridDatasourceElement",
|
|
10661
10857
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10663,11 +10859,11 @@
|
|
|
10663
10859
|
},
|
|
10664
10860
|
{
|
|
10665
10861
|
"kind": "field",
|
|
10666
|
-
"name": "
|
|
10862
|
+
"name": "pollingInterval",
|
|
10667
10863
|
"type": {
|
|
10668
|
-
"text": "
|
|
10864
|
+
"text": "number"
|
|
10669
10865
|
},
|
|
10670
|
-
"
|
|
10866
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
10671
10867
|
"inheritedFrom": {
|
|
10672
10868
|
"name": "GenesisGridDatasourceElement",
|
|
10673
10869
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10675,11 +10871,12 @@
|
|
|
10675
10871
|
},
|
|
10676
10872
|
{
|
|
10677
10873
|
"kind": "field",
|
|
10678
|
-
"name": "
|
|
10874
|
+
"name": "pollTriggerEvents",
|
|
10679
10875
|
"type": {
|
|
10680
|
-
"text": "
|
|
10876
|
+
"text": "string[]"
|
|
10681
10877
|
},
|
|
10682
|
-
"default": "
|
|
10878
|
+
"default": "[]",
|
|
10879
|
+
"description": "Array of event names that will trigger a poll when received as commit responses.",
|
|
10683
10880
|
"inheritedFrom": {
|
|
10684
10881
|
"name": "GenesisGridDatasourceElement",
|
|
10685
10882
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -11042,11 +11239,20 @@
|
|
|
11042
11239
|
"description": "Enable live updates for the grid.",
|
|
11043
11240
|
"fieldName": "liveUpdates"
|
|
11044
11241
|
},
|
|
11242
|
+
{
|
|
11243
|
+
"name": "paging-mode",
|
|
11244
|
+
"type": {
|
|
11245
|
+
"text": "PagingMode | undefined"
|
|
11246
|
+
},
|
|
11247
|
+
"description": "The paging mode to use for data fetching.",
|
|
11248
|
+
"fieldName": "pagingMode"
|
|
11249
|
+
},
|
|
11045
11250
|
{
|
|
11046
11251
|
"name": "criteria",
|
|
11047
11252
|
"type": {
|
|
11048
11253
|
"text": "string"
|
|
11049
11254
|
},
|
|
11255
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
11050
11256
|
"fieldName": "criteria",
|
|
11051
11257
|
"inheritedFrom": {
|
|
11052
11258
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -11054,79 +11260,98 @@
|
|
|
11054
11260
|
}
|
|
11055
11261
|
},
|
|
11056
11262
|
{
|
|
11057
|
-
"name": "
|
|
11263
|
+
"name": "is-snapshot",
|
|
11058
11264
|
"type": {
|
|
11059
|
-
"text": "
|
|
11265
|
+
"text": "boolean"
|
|
11060
11266
|
},
|
|
11061
|
-
"
|
|
11267
|
+
"default": "false",
|
|
11268
|
+
"description": "Request a snapshot from the server.",
|
|
11269
|
+
"fieldName": "isSnapshot",
|
|
11062
11270
|
"inheritedFrom": {
|
|
11063
11271
|
"name": "GenesisGridDatasourceElement",
|
|
11064
11272
|
"module": "src/datasource/base.datasource.ts"
|
|
11065
11273
|
}
|
|
11066
11274
|
},
|
|
11067
11275
|
{
|
|
11068
|
-
"name": "
|
|
11276
|
+
"name": "max-rows",
|
|
11069
11277
|
"type": {
|
|
11070
|
-
"text": "
|
|
11278
|
+
"text": "number"
|
|
11071
11279
|
},
|
|
11072
|
-
"
|
|
11073
|
-
"fieldName": "
|
|
11280
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
11281
|
+
"fieldName": "maxRows",
|
|
11074
11282
|
"inheritedFrom": {
|
|
11075
11283
|
"name": "GenesisGridDatasourceElement",
|
|
11076
11284
|
"module": "src/datasource/base.datasource.ts"
|
|
11077
11285
|
}
|
|
11078
11286
|
},
|
|
11079
11287
|
{
|
|
11080
|
-
"name": "
|
|
11288
|
+
"name": "order-by",
|
|
11081
11289
|
"type": {
|
|
11082
|
-
"text": "
|
|
11290
|
+
"text": "string"
|
|
11083
11291
|
},
|
|
11084
|
-
"
|
|
11292
|
+
"description": "Option to select a Data Server index (defined in the Data Server query), which is especially useful if you want the data to be sorted in a specific way.",
|
|
11293
|
+
"fieldName": "orderBy",
|
|
11085
11294
|
"inheritedFrom": {
|
|
11086
11295
|
"name": "GenesisGridDatasourceElement",
|
|
11087
11296
|
"module": "src/datasource/base.datasource.ts"
|
|
11088
11297
|
}
|
|
11089
11298
|
},
|
|
11090
11299
|
{
|
|
11091
|
-
"name": "
|
|
11300
|
+
"name": "resource-name",
|
|
11092
11301
|
"type": {
|
|
11093
|
-
"text": "
|
|
11302
|
+
"text": "string"
|
|
11094
11303
|
},
|
|
11095
|
-
"
|
|
11304
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
11305
|
+
"fieldName": "resourceName",
|
|
11096
11306
|
"inheritedFrom": {
|
|
11097
11307
|
"name": "GenesisGridDatasourceElement",
|
|
11098
11308
|
"module": "src/datasource/base.datasource.ts"
|
|
11099
11309
|
}
|
|
11100
11310
|
},
|
|
11101
11311
|
{
|
|
11102
|
-
"name": "
|
|
11312
|
+
"name": "view-number",
|
|
11103
11313
|
"type": {
|
|
11104
|
-
"text": "
|
|
11314
|
+
"text": "number"
|
|
11105
11315
|
},
|
|
11106
|
-
"
|
|
11107
|
-
"fieldName": "
|
|
11316
|
+
"description": "The desired view/page you want data from.",
|
|
11317
|
+
"fieldName": "viewNumber",
|
|
11108
11318
|
"inheritedFrom": {
|
|
11109
11319
|
"name": "GenesisGridDatasourceElement",
|
|
11110
11320
|
"module": "src/datasource/base.datasource.ts"
|
|
11111
11321
|
}
|
|
11112
11322
|
},
|
|
11113
11323
|
{
|
|
11114
|
-
"name": "
|
|
11324
|
+
"name": "fields",
|
|
11115
11325
|
"type": {
|
|
11116
11326
|
"text": "string"
|
|
11117
11327
|
},
|
|
11118
|
-
"
|
|
11328
|
+
"description": "Optional parameter that allows you to select a subset of fields from the query if the client is not interested in receiving all of them.",
|
|
11329
|
+
"fieldName": "fields",
|
|
11119
11330
|
"inheritedFrom": {
|
|
11120
11331
|
"name": "GenesisGridDatasourceElement",
|
|
11121
11332
|
"module": "src/datasource/base.datasource.ts"
|
|
11122
11333
|
}
|
|
11123
11334
|
},
|
|
11124
11335
|
{
|
|
11125
|
-
"name": "
|
|
11336
|
+
"name": "max-view",
|
|
11126
11337
|
"type": {
|
|
11127
|
-
"text": "
|
|
11338
|
+
"text": "number"
|
|
11128
11339
|
},
|
|
11129
|
-
"
|
|
11340
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
11341
|
+
"fieldName": "maxView",
|
|
11342
|
+
"inheritedFrom": {
|
|
11343
|
+
"name": "GenesisGridDatasourceElement",
|
|
11344
|
+
"module": "src/datasource/base.datasource.ts"
|
|
11345
|
+
}
|
|
11346
|
+
},
|
|
11347
|
+
{
|
|
11348
|
+
"name": "moving-view",
|
|
11349
|
+
"type": {
|
|
11350
|
+
"text": "boolean"
|
|
11351
|
+
},
|
|
11352
|
+
"default": "false",
|
|
11353
|
+
"description": "If true, when the maximum number of rows defined in max-view is reached, the Data Server will start discarding the oldest rows (in terms of timestamp) and sending newer rows.",
|
|
11354
|
+
"fieldName": "movingView",
|
|
11130
11355
|
"inheritedFrom": {
|
|
11131
11356
|
"name": "GenesisGridDatasourceElement",
|
|
11132
11357
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -11137,6 +11362,7 @@
|
|
|
11137
11362
|
"text": "boolean"
|
|
11138
11363
|
},
|
|
11139
11364
|
"default": "false",
|
|
11365
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
11140
11366
|
"fieldName": "reverse",
|
|
11141
11367
|
"inheritedFrom": {
|
|
11142
11368
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -11144,34 +11370,37 @@
|
|
|
11144
11370
|
}
|
|
11145
11371
|
},
|
|
11146
11372
|
{
|
|
11147
|
-
"name": "
|
|
11373
|
+
"name": "disable-polling",
|
|
11148
11374
|
"type": {
|
|
11149
|
-
"text": "
|
|
11375
|
+
"text": "boolean"
|
|
11150
11376
|
},
|
|
11151
|
-
"
|
|
11377
|
+
"default": "false",
|
|
11378
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
11379
|
+
"fieldName": "disablePolling",
|
|
11152
11380
|
"inheritedFrom": {
|
|
11153
11381
|
"name": "GenesisGridDatasourceElement",
|
|
11154
11382
|
"module": "src/datasource/base.datasource.ts"
|
|
11155
11383
|
}
|
|
11156
11384
|
},
|
|
11157
11385
|
{
|
|
11158
|
-
"name": "
|
|
11386
|
+
"name": "offset",
|
|
11159
11387
|
"type": {
|
|
11160
11388
|
"text": "number"
|
|
11161
11389
|
},
|
|
11162
|
-
"
|
|
11390
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
11391
|
+
"fieldName": "offset",
|
|
11163
11392
|
"inheritedFrom": {
|
|
11164
11393
|
"name": "GenesisGridDatasourceElement",
|
|
11165
11394
|
"module": "src/datasource/base.datasource.ts"
|
|
11166
11395
|
}
|
|
11167
11396
|
},
|
|
11168
11397
|
{
|
|
11169
|
-
"name": "
|
|
11398
|
+
"name": "polling-interval",
|
|
11170
11399
|
"type": {
|
|
11171
|
-
"text": "
|
|
11400
|
+
"text": "number"
|
|
11172
11401
|
},
|
|
11173
|
-
"
|
|
11174
|
-
"fieldName": "
|
|
11402
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
11403
|
+
"fieldName": "pollingInterval",
|
|
11175
11404
|
"inheritedFrom": {
|
|
11176
11405
|
"name": "GenesisGridDatasourceElement",
|
|
11177
11406
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -11405,6 +11634,22 @@
|
|
|
11405
11634
|
},
|
|
11406
11635
|
"privacy": "protected"
|
|
11407
11636
|
},
|
|
11637
|
+
{
|
|
11638
|
+
"kind": "field",
|
|
11639
|
+
"name": "pagingMode",
|
|
11640
|
+
"type": {
|
|
11641
|
+
"text": "PagingMode | undefined | undefined"
|
|
11642
|
+
},
|
|
11643
|
+
"privacy": "protected"
|
|
11644
|
+
},
|
|
11645
|
+
{
|
|
11646
|
+
"kind": "field",
|
|
11647
|
+
"name": "criteriaOnlyRequest",
|
|
11648
|
+
"type": {
|
|
11649
|
+
"text": "boolean | undefined"
|
|
11650
|
+
},
|
|
11651
|
+
"privacy": "protected"
|
|
11652
|
+
},
|
|
11408
11653
|
{
|
|
11409
11654
|
"kind": "field",
|
|
11410
11655
|
"name": "sourceRef",
|
|
@@ -11494,10 +11739,53 @@
|
|
|
11494
11739
|
}
|
|
11495
11740
|
]
|
|
11496
11741
|
},
|
|
11742
|
+
{
|
|
11743
|
+
"kind": "method",
|
|
11744
|
+
"name": "setupFiltering",
|
|
11745
|
+
"privacy": "protected",
|
|
11746
|
+
"return": {
|
|
11747
|
+
"type": {
|
|
11748
|
+
"text": "Promise<void>"
|
|
11749
|
+
}
|
|
11750
|
+
},
|
|
11751
|
+
"parameters": [
|
|
11752
|
+
{
|
|
11753
|
+
"name": "params",
|
|
11754
|
+
"type": {
|
|
11755
|
+
"text": "IServerSideGetRowsParams"
|
|
11756
|
+
}
|
|
11757
|
+
}
|
|
11758
|
+
],
|
|
11759
|
+
"description": "Handles filtering setup for server-side datasources.\nCommon logic used by both dataserver and req-rep implementations."
|
|
11760
|
+
},
|
|
11761
|
+
{
|
|
11762
|
+
"kind": "method",
|
|
11763
|
+
"name": "setupSorting",
|
|
11764
|
+
"privacy": "protected",
|
|
11765
|
+
"return": {
|
|
11766
|
+
"type": {
|
|
11767
|
+
"text": "Promise<void>"
|
|
11768
|
+
}
|
|
11769
|
+
},
|
|
11770
|
+
"parameters": [
|
|
11771
|
+
{
|
|
11772
|
+
"name": "params",
|
|
11773
|
+
"type": {
|
|
11774
|
+
"text": "IServerSideGetRowsParams"
|
|
11775
|
+
}
|
|
11776
|
+
}
|
|
11777
|
+
],
|
|
11778
|
+
"description": "Handles sorting setup. Must be implemented by each datasource type.\nDifferent datasource types have different sorting requirements:\n- Dataserver: Requires indexed columns\n- Req-rep: Can sort by any column"
|
|
11779
|
+
},
|
|
11497
11780
|
{
|
|
11498
11781
|
"kind": "method",
|
|
11499
11782
|
"name": "setupFilteringAndSorting",
|
|
11500
11783
|
"privacy": "protected",
|
|
11784
|
+
"return": {
|
|
11785
|
+
"type": {
|
|
11786
|
+
"text": "Promise<void>"
|
|
11787
|
+
}
|
|
11788
|
+
},
|
|
11501
11789
|
"parameters": [
|
|
11502
11790
|
{
|
|
11503
11791
|
"name": "params",
|
|
@@ -11505,7 +11793,9 @@
|
|
|
11505
11793
|
"text": "IServerSideGetRowsParams"
|
|
11506
11794
|
}
|
|
11507
11795
|
}
|
|
11508
|
-
]
|
|
11796
|
+
],
|
|
11797
|
+
"description": "Legacy method that combines filtering and sorting.\nKept for backward compatibility. New implementations should use setupFiltering and setupSorting directly.",
|
|
11798
|
+
"deprecated": "Use setupFiltering() and setupSorting() separately instead"
|
|
11509
11799
|
},
|
|
11510
11800
|
{
|
|
11511
11801
|
"kind": "method",
|
|
@@ -11599,6 +11889,7 @@
|
|
|
11599
11889
|
},
|
|
11600
11890
|
{
|
|
11601
11891
|
"name": "totalRecords",
|
|
11892
|
+
"optional": true,
|
|
11602
11893
|
"type": {
|
|
11603
11894
|
"text": "number"
|
|
11604
11895
|
}
|
|
@@ -11630,6 +11921,17 @@
|
|
|
11630
11921
|
},
|
|
11631
11922
|
"privacy": "protected",
|
|
11632
11923
|
"readonly": true
|
|
11924
|
+
},
|
|
11925
|
+
{
|
|
11926
|
+
"kind": "method",
|
|
11927
|
+
"name": "getEffectivePagingMode",
|
|
11928
|
+
"privacy": "protected",
|
|
11929
|
+
"return": {
|
|
11930
|
+
"type": {
|
|
11931
|
+
"text": "PagingMode"
|
|
11932
|
+
}
|
|
11933
|
+
},
|
|
11934
|
+
"description": "Determines the effective paging mode based on criteriaOnlyRequest availability and user settings"
|
|
11633
11935
|
}
|
|
11634
11936
|
]
|
|
11635
11937
|
}
|
|
@@ -11737,6 +12039,29 @@
|
|
|
11737
12039
|
}
|
|
11738
12040
|
]
|
|
11739
12041
|
},
|
|
12042
|
+
{
|
|
12043
|
+
"kind": "method",
|
|
12044
|
+
"name": "setupSorting",
|
|
12045
|
+
"privacy": "protected",
|
|
12046
|
+
"return": {
|
|
12047
|
+
"type": {
|
|
12048
|
+
"text": "Promise<void>"
|
|
12049
|
+
}
|
|
12050
|
+
},
|
|
12051
|
+
"parameters": [
|
|
12052
|
+
{
|
|
12053
|
+
"name": "params",
|
|
12054
|
+
"type": {
|
|
12055
|
+
"text": "IServerSideGetRowsParams"
|
|
12056
|
+
}
|
|
12057
|
+
}
|
|
12058
|
+
],
|
|
12059
|
+
"description": "Dataserver-specific sorting setup that validates columns are part of an index.\nThis is required because dataserver needs indexed columns for efficient sorting.",
|
|
12060
|
+
"inheritedFrom": {
|
|
12061
|
+
"name": "BaseServerSideDatasource",
|
|
12062
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
12063
|
+
}
|
|
12064
|
+
},
|
|
11740
12065
|
{
|
|
11741
12066
|
"kind": "method",
|
|
11742
12067
|
"name": "destroy",
|
|
@@ -11943,6 +12268,30 @@
|
|
|
11943
12268
|
"module": "src/datasource/server-side.resource-base.ts"
|
|
11944
12269
|
}
|
|
11945
12270
|
},
|
|
12271
|
+
{
|
|
12272
|
+
"kind": "field",
|
|
12273
|
+
"name": "pagingMode",
|
|
12274
|
+
"type": {
|
|
12275
|
+
"text": "PagingMode | undefined | undefined"
|
|
12276
|
+
},
|
|
12277
|
+
"privacy": "protected",
|
|
12278
|
+
"inheritedFrom": {
|
|
12279
|
+
"name": "BaseServerSideDatasource",
|
|
12280
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
12281
|
+
}
|
|
12282
|
+
},
|
|
12283
|
+
{
|
|
12284
|
+
"kind": "field",
|
|
12285
|
+
"name": "criteriaOnlyRequest",
|
|
12286
|
+
"type": {
|
|
12287
|
+
"text": "boolean | undefined"
|
|
12288
|
+
},
|
|
12289
|
+
"privacy": "protected",
|
|
12290
|
+
"inheritedFrom": {
|
|
12291
|
+
"name": "BaseServerSideDatasource",
|
|
12292
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
12293
|
+
}
|
|
12294
|
+
},
|
|
11946
12295
|
{
|
|
11947
12296
|
"kind": "field",
|
|
11948
12297
|
"name": "sourceRef",
|
|
@@ -12051,10 +12400,38 @@
|
|
|
12051
12400
|
"module": "src/datasource/server-side.resource-base.ts"
|
|
12052
12401
|
}
|
|
12053
12402
|
},
|
|
12403
|
+
{
|
|
12404
|
+
"kind": "method",
|
|
12405
|
+
"name": "setupFiltering",
|
|
12406
|
+
"privacy": "protected",
|
|
12407
|
+
"return": {
|
|
12408
|
+
"type": {
|
|
12409
|
+
"text": "Promise<void>"
|
|
12410
|
+
}
|
|
12411
|
+
},
|
|
12412
|
+
"parameters": [
|
|
12413
|
+
{
|
|
12414
|
+
"name": "params",
|
|
12415
|
+
"type": {
|
|
12416
|
+
"text": "IServerSideGetRowsParams"
|
|
12417
|
+
}
|
|
12418
|
+
}
|
|
12419
|
+
],
|
|
12420
|
+
"description": "Handles filtering setup for server-side datasources.\nCommon logic used by both dataserver and req-rep implementations.",
|
|
12421
|
+
"inheritedFrom": {
|
|
12422
|
+
"name": "BaseServerSideDatasource",
|
|
12423
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
12424
|
+
}
|
|
12425
|
+
},
|
|
12054
12426
|
{
|
|
12055
12427
|
"kind": "method",
|
|
12056
12428
|
"name": "setupFilteringAndSorting",
|
|
12057
12429
|
"privacy": "protected",
|
|
12430
|
+
"return": {
|
|
12431
|
+
"type": {
|
|
12432
|
+
"text": "Promise<void>"
|
|
12433
|
+
}
|
|
12434
|
+
},
|
|
12058
12435
|
"parameters": [
|
|
12059
12436
|
{
|
|
12060
12437
|
"name": "params",
|
|
@@ -12063,6 +12440,8 @@
|
|
|
12063
12440
|
}
|
|
12064
12441
|
}
|
|
12065
12442
|
],
|
|
12443
|
+
"description": "Legacy method that combines filtering and sorting.\nKept for backward compatibility. New implementations should use setupFiltering and setupSorting directly.",
|
|
12444
|
+
"deprecated": "Use setupFiltering() and setupSorting() separately instead",
|
|
12066
12445
|
"inheritedFrom": {
|
|
12067
12446
|
"name": "BaseServerSideDatasource",
|
|
12068
12447
|
"module": "src/datasource/server-side.resource-base.ts"
|
|
@@ -12149,6 +12528,7 @@
|
|
|
12149
12528
|
},
|
|
12150
12529
|
{
|
|
12151
12530
|
"name": "totalRecords",
|
|
12531
|
+
"optional": true,
|
|
12152
12532
|
"type": {
|
|
12153
12533
|
"text": "number"
|
|
12154
12534
|
}
|
|
@@ -12192,6 +12572,21 @@
|
|
|
12192
12572
|
"name": "BaseServerSideDatasource",
|
|
12193
12573
|
"module": "src/datasource/server-side.resource-base.ts"
|
|
12194
12574
|
}
|
|
12575
|
+
},
|
|
12576
|
+
{
|
|
12577
|
+
"kind": "method",
|
|
12578
|
+
"name": "getEffectivePagingMode",
|
|
12579
|
+
"privacy": "protected",
|
|
12580
|
+
"return": {
|
|
12581
|
+
"type": {
|
|
12582
|
+
"text": "PagingMode"
|
|
12583
|
+
}
|
|
12584
|
+
},
|
|
12585
|
+
"description": "Determines the effective paging mode based on criteriaOnlyRequest availability and user settings",
|
|
12586
|
+
"inheritedFrom": {
|
|
12587
|
+
"name": "BaseServerSideDatasource",
|
|
12588
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
12589
|
+
}
|
|
12195
12590
|
}
|
|
12196
12591
|
],
|
|
12197
12592
|
"superclass": {
|
|
@@ -12227,12 +12622,117 @@
|
|
|
12227
12622
|
"text": "(existingParams?: any) => Promise<RequestServerResult>"
|
|
12228
12623
|
}
|
|
12229
12624
|
},
|
|
12625
|
+
{
|
|
12626
|
+
"kind": "field",
|
|
12627
|
+
"name": "discoveredTotalRowCount",
|
|
12628
|
+
"type": {
|
|
12629
|
+
"text": "number | null"
|
|
12630
|
+
},
|
|
12631
|
+
"privacy": "private",
|
|
12632
|
+
"default": "null"
|
|
12633
|
+
},
|
|
12634
|
+
{
|
|
12635
|
+
"kind": "field",
|
|
12636
|
+
"name": "currentNextOffset",
|
|
12637
|
+
"type": {
|
|
12638
|
+
"text": "number"
|
|
12639
|
+
},
|
|
12640
|
+
"privacy": "private",
|
|
12641
|
+
"default": "0"
|
|
12642
|
+
},
|
|
12643
|
+
{
|
|
12644
|
+
"kind": "method",
|
|
12645
|
+
"name": "getRows",
|
|
12646
|
+
"return": {
|
|
12647
|
+
"type": {
|
|
12648
|
+
"text": "void"
|
|
12649
|
+
}
|
|
12650
|
+
},
|
|
12651
|
+
"parameters": [
|
|
12652
|
+
{
|
|
12653
|
+
"name": "params",
|
|
12654
|
+
"type": {
|
|
12655
|
+
"text": "IServerSideGetRowsParams"
|
|
12656
|
+
}
|
|
12657
|
+
}
|
|
12658
|
+
],
|
|
12659
|
+
"inheritedFrom": {
|
|
12660
|
+
"name": "BaseServerSideDatasource",
|
|
12661
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
12662
|
+
}
|
|
12663
|
+
},
|
|
12664
|
+
{
|
|
12665
|
+
"kind": "method",
|
|
12666
|
+
"name": "applyServerSideData",
|
|
12667
|
+
"privacy": "private",
|
|
12668
|
+
"parameters": [
|
|
12669
|
+
{
|
|
12670
|
+
"name": "params",
|
|
12671
|
+
"type": {
|
|
12672
|
+
"text": "IServerSideGetRowsParams"
|
|
12673
|
+
}
|
|
12674
|
+
},
|
|
12675
|
+
{
|
|
12676
|
+
"name": "result",
|
|
12677
|
+
"type": {
|
|
12678
|
+
"text": "RequestServerResult"
|
|
12679
|
+
}
|
|
12680
|
+
},
|
|
12681
|
+
{
|
|
12682
|
+
"name": "isLastView",
|
|
12683
|
+
"type": {
|
|
12684
|
+
"text": "boolean"
|
|
12685
|
+
}
|
|
12686
|
+
}
|
|
12687
|
+
]
|
|
12688
|
+
},
|
|
12689
|
+
{
|
|
12690
|
+
"kind": "method",
|
|
12691
|
+
"name": "getCorrectRowCount",
|
|
12692
|
+
"privacy": "protected",
|
|
12693
|
+
"parameters": [
|
|
12694
|
+
{
|
|
12695
|
+
"name": "params",
|
|
12696
|
+
"type": {
|
|
12697
|
+
"text": "IServerSideGetRowsParams"
|
|
12698
|
+
}
|
|
12699
|
+
}
|
|
12700
|
+
],
|
|
12701
|
+
"return": {
|
|
12702
|
+
"type": {
|
|
12703
|
+
"text": "number"
|
|
12704
|
+
}
|
|
12705
|
+
},
|
|
12706
|
+
"inheritedFrom": {
|
|
12707
|
+
"name": "BaseServerSideDatasource",
|
|
12708
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
12709
|
+
}
|
|
12710
|
+
},
|
|
12711
|
+
{
|
|
12712
|
+
"kind": "method",
|
|
12713
|
+
"name": "handleCurrentStreamLoad",
|
|
12714
|
+
"privacy": "private",
|
|
12715
|
+
"return": {
|
|
12716
|
+
"type": {
|
|
12717
|
+
"text": "any[]"
|
|
12718
|
+
}
|
|
12719
|
+
},
|
|
12720
|
+
"parameters": [
|
|
12721
|
+
{
|
|
12722
|
+
"name": "reply",
|
|
12723
|
+
"type": {
|
|
12724
|
+
"text": "any[]"
|
|
12725
|
+
}
|
|
12726
|
+
}
|
|
12727
|
+
]
|
|
12728
|
+
},
|
|
12230
12729
|
{
|
|
12231
12730
|
"kind": "method",
|
|
12232
|
-
"name": "
|
|
12731
|
+
"name": "setupSorting",
|
|
12732
|
+
"privacy": "protected",
|
|
12233
12733
|
"return": {
|
|
12234
12734
|
"type": {
|
|
12235
|
-
"text": "void"
|
|
12735
|
+
"text": "Promise<void>"
|
|
12236
12736
|
}
|
|
12237
12737
|
},
|
|
12238
12738
|
"parameters": [
|
|
@@ -12243,6 +12743,7 @@
|
|
|
12243
12743
|
}
|
|
12244
12744
|
}
|
|
12245
12745
|
],
|
|
12746
|
+
"description": "Req-rep specific sorting setup that allows any column to be sorted\n(unlike dataserver which requires indexed columns only)",
|
|
12246
12747
|
"inheritedFrom": {
|
|
12247
12748
|
"name": "BaseServerSideDatasource",
|
|
12248
12749
|
"module": "src/datasource/server-side.resource-base.ts"
|
|
@@ -12250,33 +12751,13 @@
|
|
|
12250
12751
|
},
|
|
12251
12752
|
{
|
|
12252
12753
|
"kind": "method",
|
|
12253
|
-
"name": "
|
|
12254
|
-
"privacy": "private",
|
|
12255
|
-
"parameters": [
|
|
12256
|
-
{
|
|
12257
|
-
"name": "params",
|
|
12258
|
-
"type": {
|
|
12259
|
-
"text": "IServerSideGetRowsParams"
|
|
12260
|
-
}
|
|
12261
|
-
},
|
|
12262
|
-
{
|
|
12263
|
-
"name": "result",
|
|
12264
|
-
"type": {
|
|
12265
|
-
"text": "RequestServerResult"
|
|
12266
|
-
}
|
|
12267
|
-
},
|
|
12268
|
-
{
|
|
12269
|
-
"name": "isLastView",
|
|
12270
|
-
"type": {
|
|
12271
|
-
"text": "boolean"
|
|
12272
|
-
}
|
|
12273
|
-
}
|
|
12274
|
-
]
|
|
12275
|
-
},
|
|
12276
|
-
{
|
|
12277
|
-
"kind": "method",
|
|
12278
|
-
"name": "getCorrectRowCount",
|
|
12754
|
+
"name": "refreshDatasource",
|
|
12279
12755
|
"privacy": "protected",
|
|
12756
|
+
"return": {
|
|
12757
|
+
"type": {
|
|
12758
|
+
"text": "Promise<void>"
|
|
12759
|
+
}
|
|
12760
|
+
},
|
|
12280
12761
|
"parameters": [
|
|
12281
12762
|
{
|
|
12282
12763
|
"name": "params",
|
|
@@ -12285,11 +12766,6 @@
|
|
|
12285
12766
|
}
|
|
12286
12767
|
}
|
|
12287
12768
|
],
|
|
12288
|
-
"return": {
|
|
12289
|
-
"type": {
|
|
12290
|
-
"text": "number"
|
|
12291
|
-
}
|
|
12292
|
-
},
|
|
12293
12769
|
"inheritedFrom": {
|
|
12294
12770
|
"name": "BaseServerSideDatasource",
|
|
12295
12771
|
"module": "src/datasource/server-side.resource-base.ts"
|
|
@@ -12297,18 +12773,18 @@
|
|
|
12297
12773
|
},
|
|
12298
12774
|
{
|
|
12299
12775
|
"kind": "method",
|
|
12300
|
-
"name": "
|
|
12776
|
+
"name": "buildRequestDetails",
|
|
12301
12777
|
"privacy": "private",
|
|
12302
12778
|
"return": {
|
|
12303
12779
|
"type": {
|
|
12304
|
-
"text": "any
|
|
12780
|
+
"text": "any"
|
|
12305
12781
|
}
|
|
12306
12782
|
},
|
|
12307
12783
|
"parameters": [
|
|
12308
12784
|
{
|
|
12309
|
-
"name": "
|
|
12785
|
+
"name": "effectivePagingMode",
|
|
12310
12786
|
"type": {
|
|
12311
|
-
"text": "
|
|
12787
|
+
"text": "PagingMode"
|
|
12312
12788
|
}
|
|
12313
12789
|
}
|
|
12314
12790
|
]
|
|
@@ -12488,6 +12964,30 @@
|
|
|
12488
12964
|
"module": "src/datasource/server-side.resource-base.ts"
|
|
12489
12965
|
}
|
|
12490
12966
|
},
|
|
12967
|
+
{
|
|
12968
|
+
"kind": "field",
|
|
12969
|
+
"name": "pagingMode",
|
|
12970
|
+
"type": {
|
|
12971
|
+
"text": "PagingMode | undefined | undefined"
|
|
12972
|
+
},
|
|
12973
|
+
"privacy": "protected",
|
|
12974
|
+
"inheritedFrom": {
|
|
12975
|
+
"name": "BaseServerSideDatasource",
|
|
12976
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
12977
|
+
}
|
|
12978
|
+
},
|
|
12979
|
+
{
|
|
12980
|
+
"kind": "field",
|
|
12981
|
+
"name": "criteriaOnlyRequest",
|
|
12982
|
+
"type": {
|
|
12983
|
+
"text": "boolean | undefined"
|
|
12984
|
+
},
|
|
12985
|
+
"privacy": "protected",
|
|
12986
|
+
"inheritedFrom": {
|
|
12987
|
+
"name": "BaseServerSideDatasource",
|
|
12988
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
12989
|
+
}
|
|
12990
|
+
},
|
|
12491
12991
|
{
|
|
12492
12992
|
"kind": "field",
|
|
12493
12993
|
"name": "sourceRef",
|
|
@@ -12598,8 +13098,13 @@
|
|
|
12598
13098
|
},
|
|
12599
13099
|
{
|
|
12600
13100
|
"kind": "method",
|
|
12601
|
-
"name": "
|
|
13101
|
+
"name": "setupFiltering",
|
|
12602
13102
|
"privacy": "protected",
|
|
13103
|
+
"return": {
|
|
13104
|
+
"type": {
|
|
13105
|
+
"text": "Promise<void>"
|
|
13106
|
+
}
|
|
13107
|
+
},
|
|
12603
13108
|
"parameters": [
|
|
12604
13109
|
{
|
|
12605
13110
|
"name": "params",
|
|
@@ -12608,6 +13113,7 @@
|
|
|
12608
13113
|
}
|
|
12609
13114
|
}
|
|
12610
13115
|
],
|
|
13116
|
+
"description": "Handles filtering setup for server-side datasources.\nCommon logic used by both dataserver and req-rep implementations.",
|
|
12611
13117
|
"inheritedFrom": {
|
|
12612
13118
|
"name": "BaseServerSideDatasource",
|
|
12613
13119
|
"module": "src/datasource/server-side.resource-base.ts"
|
|
@@ -12615,12 +13121,23 @@
|
|
|
12615
13121
|
},
|
|
12616
13122
|
{
|
|
12617
13123
|
"kind": "method",
|
|
12618
|
-
"name": "
|
|
13124
|
+
"name": "setupFilteringAndSorting",
|
|
13125
|
+
"privacy": "protected",
|
|
12619
13126
|
"return": {
|
|
12620
13127
|
"type": {
|
|
12621
|
-
"text": "void"
|
|
13128
|
+
"text": "Promise<void>"
|
|
12622
13129
|
}
|
|
12623
13130
|
},
|
|
13131
|
+
"parameters": [
|
|
13132
|
+
{
|
|
13133
|
+
"name": "params",
|
|
13134
|
+
"type": {
|
|
13135
|
+
"text": "IServerSideGetRowsParams"
|
|
13136
|
+
}
|
|
13137
|
+
}
|
|
13138
|
+
],
|
|
13139
|
+
"description": "Legacy method that combines filtering and sorting.\nKept for backward compatibility. New implementations should use setupFiltering and setupSorting directly.",
|
|
13140
|
+
"deprecated": "Use setupFiltering() and setupSorting() separately instead",
|
|
12624
13141
|
"inheritedFrom": {
|
|
12625
13142
|
"name": "BaseServerSideDatasource",
|
|
12626
13143
|
"module": "src/datasource/server-side.resource-base.ts"
|
|
@@ -12628,21 +13145,12 @@
|
|
|
12628
13145
|
},
|
|
12629
13146
|
{
|
|
12630
13147
|
"kind": "method",
|
|
12631
|
-
"name": "
|
|
12632
|
-
"privacy": "protected",
|
|
13148
|
+
"name": "destroy",
|
|
12633
13149
|
"return": {
|
|
12634
13150
|
"type": {
|
|
12635
|
-
"text": "
|
|
13151
|
+
"text": "void"
|
|
12636
13152
|
}
|
|
12637
13153
|
},
|
|
12638
|
-
"parameters": [
|
|
12639
|
-
{
|
|
12640
|
-
"name": "params",
|
|
12641
|
-
"type": {
|
|
12642
|
-
"text": "IServerSideGetRowsParams"
|
|
12643
|
-
}
|
|
12644
|
-
}
|
|
12645
|
-
],
|
|
12646
13154
|
"inheritedFrom": {
|
|
12647
13155
|
"name": "BaseServerSideDatasource",
|
|
12648
13156
|
"module": "src/datasource/server-side.resource-base.ts"
|
|
@@ -12729,6 +13237,7 @@
|
|
|
12729
13237
|
},
|
|
12730
13238
|
{
|
|
12731
13239
|
"name": "totalRecords",
|
|
13240
|
+
"optional": true,
|
|
12732
13241
|
"type": {
|
|
12733
13242
|
"text": "number"
|
|
12734
13243
|
}
|
|
@@ -12755,6 +13264,21 @@
|
|
|
12755
13264
|
"name": "BaseServerSideDatasource",
|
|
12756
13265
|
"module": "src/datasource/server-side.resource-base.ts"
|
|
12757
13266
|
}
|
|
13267
|
+
},
|
|
13268
|
+
{
|
|
13269
|
+
"kind": "method",
|
|
13270
|
+
"name": "getEffectivePagingMode",
|
|
13271
|
+
"privacy": "protected",
|
|
13272
|
+
"return": {
|
|
13273
|
+
"type": {
|
|
13274
|
+
"text": "PagingMode"
|
|
13275
|
+
}
|
|
13276
|
+
},
|
|
13277
|
+
"description": "Determines the effective paging mode based on criteriaOnlyRequest availability and user settings",
|
|
13278
|
+
"inheritedFrom": {
|
|
13279
|
+
"name": "BaseServerSideDatasource",
|
|
13280
|
+
"module": "src/datasource/server-side.resource-base.ts"
|
|
13281
|
+
}
|
|
12758
13282
|
}
|
|
12759
13283
|
],
|
|
12760
13284
|
"superclass": {
|
|
@@ -13203,6 +13727,24 @@
|
|
|
13203
13727
|
},
|
|
13204
13728
|
"privacy": "private"
|
|
13205
13729
|
},
|
|
13730
|
+
{
|
|
13731
|
+
"kind": "field",
|
|
13732
|
+
"name": "_nextOffset",
|
|
13733
|
+
"type": {
|
|
13734
|
+
"text": "number"
|
|
13735
|
+
},
|
|
13736
|
+
"privacy": "private",
|
|
13737
|
+
"default": "0"
|
|
13738
|
+
},
|
|
13739
|
+
{
|
|
13740
|
+
"kind": "field",
|
|
13741
|
+
"name": "_loadMoreCount",
|
|
13742
|
+
"type": {
|
|
13743
|
+
"text": "number"
|
|
13744
|
+
},
|
|
13745
|
+
"privacy": "private",
|
|
13746
|
+
"default": "0"
|
|
13747
|
+
},
|
|
13206
13748
|
{
|
|
13207
13749
|
"kind": "method",
|
|
13208
13750
|
"name": "deepClone",
|
|
@@ -13954,6 +14496,7 @@
|
|
|
13954
14496
|
"type": {
|
|
13955
14497
|
"text": "string"
|
|
13956
14498
|
},
|
|
14499
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
13957
14500
|
"inheritedFrom": {
|
|
13958
14501
|
"name": "GenesisGridDatasourceElement",
|
|
13959
14502
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -13961,10 +14504,12 @@
|
|
|
13961
14504
|
},
|
|
13962
14505
|
{
|
|
13963
14506
|
"kind": "field",
|
|
13964
|
-
"name": "
|
|
14507
|
+
"name": "isSnapshot",
|
|
13965
14508
|
"type": {
|
|
13966
|
-
"text": "
|
|
14509
|
+
"text": "boolean"
|
|
13967
14510
|
},
|
|
14511
|
+
"default": "false",
|
|
14512
|
+
"description": "Request a snapshot from the server.",
|
|
13968
14513
|
"inheritedFrom": {
|
|
13969
14514
|
"name": "GenesisGridDatasourceElement",
|
|
13970
14515
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -13972,11 +14517,11 @@
|
|
|
13972
14517
|
},
|
|
13973
14518
|
{
|
|
13974
14519
|
"kind": "field",
|
|
13975
|
-
"name": "
|
|
14520
|
+
"name": "maxRows",
|
|
13976
14521
|
"type": {
|
|
13977
|
-
"text": "
|
|
14522
|
+
"text": "number"
|
|
13978
14523
|
},
|
|
13979
|
-
"
|
|
14524
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
13980
14525
|
"inheritedFrom": {
|
|
13981
14526
|
"name": "GenesisGridDatasourceElement",
|
|
13982
14527
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -13984,10 +14529,11 @@
|
|
|
13984
14529
|
},
|
|
13985
14530
|
{
|
|
13986
14531
|
"kind": "field",
|
|
13987
|
-
"name": "
|
|
14532
|
+
"name": "orderBy",
|
|
13988
14533
|
"type": {
|
|
13989
|
-
"text": "
|
|
14534
|
+
"text": "string"
|
|
13990
14535
|
},
|
|
14536
|
+
"description": "Option to select a Data Server index (defined in the Data Server query), which is especially useful if you want the data to be sorted in a specific way.",
|
|
13991
14537
|
"inheritedFrom": {
|
|
13992
14538
|
"name": "GenesisGridDatasourceElement",
|
|
13993
14539
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -13995,10 +14541,11 @@
|
|
|
13995
14541
|
},
|
|
13996
14542
|
{
|
|
13997
14543
|
"kind": "field",
|
|
13998
|
-
"name": "
|
|
14544
|
+
"name": "resourceName",
|
|
13999
14545
|
"type": {
|
|
14000
|
-
"text": "
|
|
14546
|
+
"text": "string"
|
|
14001
14547
|
},
|
|
14548
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
14002
14549
|
"inheritedFrom": {
|
|
14003
14550
|
"name": "GenesisGridDatasourceElement",
|
|
14004
14551
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14006,11 +14553,11 @@
|
|
|
14006
14553
|
},
|
|
14007
14554
|
{
|
|
14008
14555
|
"kind": "field",
|
|
14009
|
-
"name": "
|
|
14556
|
+
"name": "viewNumber",
|
|
14010
14557
|
"type": {
|
|
14011
|
-
"text": "
|
|
14558
|
+
"text": "number"
|
|
14012
14559
|
},
|
|
14013
|
-
"
|
|
14560
|
+
"description": "The desired view/page you want data from.",
|
|
14014
14561
|
"inheritedFrom": {
|
|
14015
14562
|
"name": "GenesisGridDatasourceElement",
|
|
14016
14563
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14018,10 +14565,11 @@
|
|
|
14018
14565
|
},
|
|
14019
14566
|
{
|
|
14020
14567
|
"kind": "field",
|
|
14021
|
-
"name": "
|
|
14568
|
+
"name": "fields",
|
|
14022
14569
|
"type": {
|
|
14023
14570
|
"text": "string"
|
|
14024
14571
|
},
|
|
14572
|
+
"description": "Optional parameter that allows you to select a subset of fields from the query if the client is not interested in receiving all of them.",
|
|
14025
14573
|
"inheritedFrom": {
|
|
14026
14574
|
"name": "GenesisGridDatasourceElement",
|
|
14027
14575
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14029,10 +14577,24 @@
|
|
|
14029
14577
|
},
|
|
14030
14578
|
{
|
|
14031
14579
|
"kind": "field",
|
|
14032
|
-
"name": "
|
|
14580
|
+
"name": "maxView",
|
|
14033
14581
|
"type": {
|
|
14034
|
-
"text": "
|
|
14582
|
+
"text": "number"
|
|
14583
|
+
},
|
|
14584
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
14585
|
+
"inheritedFrom": {
|
|
14586
|
+
"name": "GenesisGridDatasourceElement",
|
|
14587
|
+
"module": "src/datasource/base.datasource.ts"
|
|
14588
|
+
}
|
|
14589
|
+
},
|
|
14590
|
+
{
|
|
14591
|
+
"kind": "field",
|
|
14592
|
+
"name": "movingView",
|
|
14593
|
+
"type": {
|
|
14594
|
+
"text": "boolean"
|
|
14035
14595
|
},
|
|
14596
|
+
"default": "false",
|
|
14597
|
+
"description": "If true, when the maximum number of rows defined in max-view is reached, the Data Server will start discarding the oldest rows (in terms of timestamp) and sending newer rows.",
|
|
14036
14598
|
"inheritedFrom": {
|
|
14037
14599
|
"name": "GenesisGridDatasourceElement",
|
|
14038
14600
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14045,6 +14607,7 @@
|
|
|
14045
14607
|
"text": "boolean"
|
|
14046
14608
|
},
|
|
14047
14609
|
"default": "false",
|
|
14610
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
14048
14611
|
"inheritedFrom": {
|
|
14049
14612
|
"name": "GenesisGridDatasourceElement",
|
|
14050
14613
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14052,10 +14615,12 @@
|
|
|
14052
14615
|
},
|
|
14053
14616
|
{
|
|
14054
14617
|
"kind": "field",
|
|
14055
|
-
"name": "
|
|
14618
|
+
"name": "disablePolling",
|
|
14056
14619
|
"type": {
|
|
14057
|
-
"text": "
|
|
14620
|
+
"text": "boolean"
|
|
14058
14621
|
},
|
|
14622
|
+
"default": "false",
|
|
14623
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
14059
14624
|
"inheritedFrom": {
|
|
14060
14625
|
"name": "GenesisGridDatasourceElement",
|
|
14061
14626
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14063,10 +14628,11 @@
|
|
|
14063
14628
|
},
|
|
14064
14629
|
{
|
|
14065
14630
|
"kind": "field",
|
|
14066
|
-
"name": "
|
|
14631
|
+
"name": "offset",
|
|
14067
14632
|
"type": {
|
|
14068
14633
|
"text": "number"
|
|
14069
14634
|
},
|
|
14635
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
14070
14636
|
"inheritedFrom": {
|
|
14071
14637
|
"name": "GenesisGridDatasourceElement",
|
|
14072
14638
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14074,11 +14640,11 @@
|
|
|
14074
14640
|
},
|
|
14075
14641
|
{
|
|
14076
14642
|
"kind": "field",
|
|
14077
|
-
"name": "
|
|
14643
|
+
"name": "pollingInterval",
|
|
14078
14644
|
"type": {
|
|
14079
|
-
"text": "
|
|
14645
|
+
"text": "number"
|
|
14080
14646
|
},
|
|
14081
|
-
"
|
|
14647
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
14082
14648
|
"inheritedFrom": {
|
|
14083
14649
|
"name": "GenesisGridDatasourceElement",
|
|
14084
14650
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14086,11 +14652,12 @@
|
|
|
14086
14652
|
},
|
|
14087
14653
|
{
|
|
14088
14654
|
"kind": "field",
|
|
14089
|
-
"name": "
|
|
14655
|
+
"name": "pollTriggerEvents",
|
|
14090
14656
|
"type": {
|
|
14091
|
-
"text": "
|
|
14657
|
+
"text": "string[]"
|
|
14092
14658
|
},
|
|
14093
|
-
"default": "
|
|
14659
|
+
"default": "[]",
|
|
14660
|
+
"description": "Array of event names that will trigger a poll when received as commit responses.",
|
|
14094
14661
|
"inheritedFrom": {
|
|
14095
14662
|
"name": "GenesisGridDatasourceElement",
|
|
14096
14663
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14102,6 +14669,7 @@
|
|
|
14102
14669
|
"type": {
|
|
14103
14670
|
"text": "any"
|
|
14104
14671
|
},
|
|
14672
|
+
"description": "Similar to fields but for Request Server scenarios. This optional parameter enables you to specify request fields, which can include wildcards.",
|
|
14105
14673
|
"inheritedFrom": {
|
|
14106
14674
|
"name": "GenesisGridDatasourceElement",
|
|
14107
14675
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14419,6 +14987,7 @@
|
|
|
14419
14987
|
"type": {
|
|
14420
14988
|
"text": "string"
|
|
14421
14989
|
},
|
|
14990
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
14422
14991
|
"fieldName": "criteria",
|
|
14423
14992
|
"inheritedFrom": {
|
|
14424
14993
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -14426,79 +14995,98 @@
|
|
|
14426
14995
|
}
|
|
14427
14996
|
},
|
|
14428
14997
|
{
|
|
14429
|
-
"name": "
|
|
14998
|
+
"name": "is-snapshot",
|
|
14430
14999
|
"type": {
|
|
14431
|
-
"text": "
|
|
15000
|
+
"text": "boolean"
|
|
14432
15001
|
},
|
|
14433
|
-
"
|
|
15002
|
+
"default": "false",
|
|
15003
|
+
"description": "Request a snapshot from the server.",
|
|
15004
|
+
"fieldName": "isSnapshot",
|
|
14434
15005
|
"inheritedFrom": {
|
|
14435
15006
|
"name": "GenesisGridDatasourceElement",
|
|
14436
15007
|
"module": "src/datasource/base.datasource.ts"
|
|
14437
15008
|
}
|
|
14438
15009
|
},
|
|
14439
15010
|
{
|
|
14440
|
-
"name": "
|
|
15011
|
+
"name": "max-rows",
|
|
14441
15012
|
"type": {
|
|
14442
|
-
"text": "
|
|
15013
|
+
"text": "number"
|
|
14443
15014
|
},
|
|
14444
|
-
"
|
|
14445
|
-
"fieldName": "
|
|
15015
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
15016
|
+
"fieldName": "maxRows",
|
|
14446
15017
|
"inheritedFrom": {
|
|
14447
15018
|
"name": "GenesisGridDatasourceElement",
|
|
14448
15019
|
"module": "src/datasource/base.datasource.ts"
|
|
14449
15020
|
}
|
|
14450
15021
|
},
|
|
14451
15022
|
{
|
|
14452
|
-
"name": "
|
|
15023
|
+
"name": "order-by",
|
|
14453
15024
|
"type": {
|
|
14454
|
-
"text": "
|
|
15025
|
+
"text": "string"
|
|
14455
15026
|
},
|
|
14456
|
-
"
|
|
15027
|
+
"description": "Option to select a Data Server index (defined in the Data Server query), which is especially useful if you want the data to be sorted in a specific way.",
|
|
15028
|
+
"fieldName": "orderBy",
|
|
14457
15029
|
"inheritedFrom": {
|
|
14458
15030
|
"name": "GenesisGridDatasourceElement",
|
|
14459
15031
|
"module": "src/datasource/base.datasource.ts"
|
|
14460
15032
|
}
|
|
14461
15033
|
},
|
|
14462
15034
|
{
|
|
14463
|
-
"name": "
|
|
15035
|
+
"name": "resource-name",
|
|
14464
15036
|
"type": {
|
|
14465
|
-
"text": "
|
|
15037
|
+
"text": "string"
|
|
14466
15038
|
},
|
|
14467
|
-
"
|
|
15039
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
15040
|
+
"fieldName": "resourceName",
|
|
14468
15041
|
"inheritedFrom": {
|
|
14469
15042
|
"name": "GenesisGridDatasourceElement",
|
|
14470
15043
|
"module": "src/datasource/base.datasource.ts"
|
|
14471
15044
|
}
|
|
14472
15045
|
},
|
|
14473
15046
|
{
|
|
14474
|
-
"name": "
|
|
15047
|
+
"name": "view-number",
|
|
14475
15048
|
"type": {
|
|
14476
|
-
"text": "
|
|
15049
|
+
"text": "number"
|
|
14477
15050
|
},
|
|
14478
|
-
"
|
|
14479
|
-
"fieldName": "
|
|
15051
|
+
"description": "The desired view/page you want data from.",
|
|
15052
|
+
"fieldName": "viewNumber",
|
|
14480
15053
|
"inheritedFrom": {
|
|
14481
15054
|
"name": "GenesisGridDatasourceElement",
|
|
14482
15055
|
"module": "src/datasource/base.datasource.ts"
|
|
14483
15056
|
}
|
|
14484
15057
|
},
|
|
14485
15058
|
{
|
|
14486
|
-
"name": "
|
|
15059
|
+
"name": "fields",
|
|
14487
15060
|
"type": {
|
|
14488
15061
|
"text": "string"
|
|
14489
15062
|
},
|
|
14490
|
-
"
|
|
15063
|
+
"description": "Optional parameter that allows you to select a subset of fields from the query if the client is not interested in receiving all of them.",
|
|
15064
|
+
"fieldName": "fields",
|
|
14491
15065
|
"inheritedFrom": {
|
|
14492
15066
|
"name": "GenesisGridDatasourceElement",
|
|
14493
15067
|
"module": "src/datasource/base.datasource.ts"
|
|
14494
15068
|
}
|
|
14495
15069
|
},
|
|
14496
15070
|
{
|
|
14497
|
-
"name": "
|
|
15071
|
+
"name": "max-view",
|
|
14498
15072
|
"type": {
|
|
14499
|
-
"text": "
|
|
15073
|
+
"text": "number"
|
|
14500
15074
|
},
|
|
14501
|
-
"
|
|
15075
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
15076
|
+
"fieldName": "maxView",
|
|
15077
|
+
"inheritedFrom": {
|
|
15078
|
+
"name": "GenesisGridDatasourceElement",
|
|
15079
|
+
"module": "src/datasource/base.datasource.ts"
|
|
15080
|
+
}
|
|
15081
|
+
},
|
|
15082
|
+
{
|
|
15083
|
+
"name": "moving-view",
|
|
15084
|
+
"type": {
|
|
15085
|
+
"text": "boolean"
|
|
15086
|
+
},
|
|
15087
|
+
"default": "false",
|
|
15088
|
+
"description": "If true, when the maximum number of rows defined in max-view is reached, the Data Server will start discarding the oldest rows (in terms of timestamp) and sending newer rows.",
|
|
15089
|
+
"fieldName": "movingView",
|
|
14502
15090
|
"inheritedFrom": {
|
|
14503
15091
|
"name": "GenesisGridDatasourceElement",
|
|
14504
15092
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14509,6 +15097,7 @@
|
|
|
14509
15097
|
"text": "boolean"
|
|
14510
15098
|
},
|
|
14511
15099
|
"default": "false",
|
|
15100
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
14512
15101
|
"fieldName": "reverse",
|
|
14513
15102
|
"inheritedFrom": {
|
|
14514
15103
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -14516,34 +15105,37 @@
|
|
|
14516
15105
|
}
|
|
14517
15106
|
},
|
|
14518
15107
|
{
|
|
14519
|
-
"name": "
|
|
15108
|
+
"name": "disable-polling",
|
|
14520
15109
|
"type": {
|
|
14521
|
-
"text": "
|
|
15110
|
+
"text": "boolean"
|
|
14522
15111
|
},
|
|
14523
|
-
"
|
|
15112
|
+
"default": "false",
|
|
15113
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
15114
|
+
"fieldName": "disablePolling",
|
|
14524
15115
|
"inheritedFrom": {
|
|
14525
15116
|
"name": "GenesisGridDatasourceElement",
|
|
14526
15117
|
"module": "src/datasource/base.datasource.ts"
|
|
14527
15118
|
}
|
|
14528
15119
|
},
|
|
14529
15120
|
{
|
|
14530
|
-
"name": "
|
|
15121
|
+
"name": "offset",
|
|
14531
15122
|
"type": {
|
|
14532
15123
|
"text": "number"
|
|
14533
15124
|
},
|
|
14534
|
-
"
|
|
15125
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
15126
|
+
"fieldName": "offset",
|
|
14535
15127
|
"inheritedFrom": {
|
|
14536
15128
|
"name": "GenesisGridDatasourceElement",
|
|
14537
15129
|
"module": "src/datasource/base.datasource.ts"
|
|
14538
15130
|
}
|
|
14539
15131
|
},
|
|
14540
15132
|
{
|
|
14541
|
-
"name": "
|
|
15133
|
+
"name": "polling-interval",
|
|
14542
15134
|
"type": {
|
|
14543
|
-
"text": "
|
|
15135
|
+
"text": "number"
|
|
14544
15136
|
},
|
|
14545
|
-
"
|
|
14546
|
-
"fieldName": "
|
|
15137
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
15138
|
+
"fieldName": "pollingInterval",
|
|
14547
15139
|
"inheritedFrom": {
|
|
14548
15140
|
"name": "GenesisGridDatasourceElement",
|
|
14549
15141
|
"module": "src/datasource/base.datasource.ts"
|