@genesislcap/grid-pro 14.320.1 → 14.320.2-alpha-e69dcb3.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/dist/custom-elements.json +535 -249
- package/dist/dts/datasource/base.datasource.d.ts +63 -4
- package/dist/dts/datasource/base.datasource.d.ts.map +1 -1
- 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 +56 -14
- package/dist/esm/datasource/server-side.resource-reqrep.js +19 -6
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +33 -2
- package/dist/esm/status-bar-components/pagination.status-bar.js +29 -4
- package/dist/grid-pro.api.json +44 -14
- package/dist/grid-pro.d.ts +65 -4
- 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-report.md.api.md +1 -14
- package/package.json +13 -13
|
@@ -6363,36 +6363,57 @@
|
|
|
6363
6363
|
"name": "criteria",
|
|
6364
6364
|
"type": {
|
|
6365
6365
|
"text": "string"
|
|
6366
|
-
}
|
|
6366
|
+
},
|
|
6367
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription."
|
|
6367
6368
|
},
|
|
6368
6369
|
{
|
|
6369
6370
|
"kind": "field",
|
|
6370
|
-
"name": "
|
|
6371
|
+
"name": "isSnapshot",
|
|
6371
6372
|
"type": {
|
|
6372
|
-
"text": "
|
|
6373
|
-
}
|
|
6373
|
+
"text": "boolean"
|
|
6374
|
+
},
|
|
6375
|
+
"default": "false",
|
|
6376
|
+
"description": "Request a snapshot from the server."
|
|
6374
6377
|
},
|
|
6375
6378
|
{
|
|
6376
6379
|
"kind": "field",
|
|
6377
|
-
"name": "
|
|
6380
|
+
"name": "maxRows",
|
|
6378
6381
|
"type": {
|
|
6379
|
-
"text": "
|
|
6382
|
+
"text": "number"
|
|
6380
6383
|
},
|
|
6381
|
-
"
|
|
6384
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages."
|
|
6382
6385
|
},
|
|
6383
6386
|
{
|
|
6384
6387
|
"kind": "field",
|
|
6385
|
-
"name": "
|
|
6388
|
+
"name": "resourceName",
|
|
6389
|
+
"type": {
|
|
6390
|
+
"text": "string"
|
|
6391
|
+
},
|
|
6392
|
+
"description": "The name of the target Data Server query or Request Server requestReply."
|
|
6393
|
+
},
|
|
6394
|
+
{
|
|
6395
|
+
"kind": "field",
|
|
6396
|
+
"name": "viewNumber",
|
|
6386
6397
|
"type": {
|
|
6387
6398
|
"text": "number"
|
|
6388
|
-
}
|
|
6399
|
+
},
|
|
6400
|
+
"description": "The desired view/page you want data from."
|
|
6401
|
+
},
|
|
6402
|
+
{
|
|
6403
|
+
"kind": "field",
|
|
6404
|
+
"name": "fields",
|
|
6405
|
+
"type": {
|
|
6406
|
+
"text": "string"
|
|
6407
|
+
},
|
|
6408
|
+
"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."
|
|
6389
6409
|
},
|
|
6390
6410
|
{
|
|
6391
6411
|
"kind": "field",
|
|
6392
6412
|
"name": "maxView",
|
|
6393
6413
|
"type": {
|
|
6394
6414
|
"text": "number"
|
|
6395
|
-
}
|
|
6415
|
+
},
|
|
6416
|
+
"description": "Maximum number of rows to track as part of a client \"view\"."
|
|
6396
6417
|
},
|
|
6397
6418
|
{
|
|
6398
6419
|
"kind": "field",
|
|
@@ -6400,43 +6421,50 @@
|
|
|
6400
6421
|
"type": {
|
|
6401
6422
|
"text": "boolean"
|
|
6402
6423
|
},
|
|
6403
|
-
"default": "false"
|
|
6424
|
+
"default": "false",
|
|
6425
|
+
"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."
|
|
6404
6426
|
},
|
|
6405
6427
|
{
|
|
6406
6428
|
"kind": "field",
|
|
6407
6429
|
"name": "orderBy",
|
|
6408
6430
|
"type": {
|
|
6409
6431
|
"text": "string"
|
|
6410
|
-
}
|
|
6432
|
+
},
|
|
6433
|
+
"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."
|
|
6411
6434
|
},
|
|
6412
6435
|
{
|
|
6413
6436
|
"kind": "field",
|
|
6414
|
-
"name": "
|
|
6437
|
+
"name": "reverse",
|
|
6415
6438
|
"type": {
|
|
6416
|
-
"text": "
|
|
6417
|
-
}
|
|
6439
|
+
"text": "boolean"
|
|
6440
|
+
},
|
|
6441
|
+
"default": "false",
|
|
6442
|
+
"description": "Option that changes the Data Server index iteration."
|
|
6418
6443
|
},
|
|
6419
6444
|
{
|
|
6420
6445
|
"kind": "field",
|
|
6421
|
-
"name": "
|
|
6446
|
+
"name": "disablePolling",
|
|
6422
6447
|
"type": {
|
|
6423
6448
|
"text": "boolean"
|
|
6424
6449
|
},
|
|
6425
|
-
"default": "false"
|
|
6450
|
+
"default": "false",
|
|
6451
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically)."
|
|
6426
6452
|
},
|
|
6427
6453
|
{
|
|
6428
6454
|
"kind": "field",
|
|
6429
|
-
"name": "
|
|
6455
|
+
"name": "offset",
|
|
6430
6456
|
"type": {
|
|
6431
6457
|
"text": "number"
|
|
6432
|
-
}
|
|
6458
|
+
},
|
|
6459
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios."
|
|
6433
6460
|
},
|
|
6434
6461
|
{
|
|
6435
6462
|
"kind": "field",
|
|
6436
6463
|
"name": "pollingInterval",
|
|
6437
6464
|
"type": {
|
|
6438
6465
|
"text": "number"
|
|
6439
|
-
}
|
|
6466
|
+
},
|
|
6467
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource."
|
|
6440
6468
|
},
|
|
6441
6469
|
{
|
|
6442
6470
|
"kind": "field",
|
|
@@ -6444,22 +6472,16 @@
|
|
|
6444
6472
|
"type": {
|
|
6445
6473
|
"text": "string[]"
|
|
6446
6474
|
},
|
|
6447
|
-
"default": "[]"
|
|
6448
|
-
|
|
6449
|
-
{
|
|
6450
|
-
"kind": "field",
|
|
6451
|
-
"name": "disablePolling",
|
|
6452
|
-
"type": {
|
|
6453
|
-
"text": "boolean"
|
|
6454
|
-
},
|
|
6455
|
-
"default": "false"
|
|
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,13 +6784,39 @@
|
|
|
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
|
},
|
|
6790
|
+
{
|
|
6791
|
+
"name": "resource-name",
|
|
6792
|
+
"type": {
|
|
6793
|
+
"text": "string"
|
|
6794
|
+
},
|
|
6795
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
6796
|
+
"fieldName": "resourceName"
|
|
6797
|
+
},
|
|
6798
|
+
{
|
|
6799
|
+
"name": "view-number",
|
|
6800
|
+
"type": {
|
|
6801
|
+
"text": "number"
|
|
6802
|
+
},
|
|
6803
|
+
"description": "The desired view/page you want data from.",
|
|
6804
|
+
"fieldName": "viewNumber"
|
|
6805
|
+
},
|
|
6806
|
+
{
|
|
6807
|
+
"name": "fields",
|
|
6808
|
+
"type": {
|
|
6809
|
+
"text": "string"
|
|
6810
|
+
},
|
|
6811
|
+
"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.",
|
|
6812
|
+
"fieldName": "fields"
|
|
6813
|
+
},
|
|
6772
6814
|
{
|
|
6773
6815
|
"name": "max-view",
|
|
6774
6816
|
"type": {
|
|
6775
6817
|
"text": "number"
|
|
6776
6818
|
},
|
|
6819
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
6777
6820
|
"fieldName": "maxView"
|
|
6778
6821
|
},
|
|
6779
6822
|
{
|
|
@@ -6782,6 +6825,7 @@
|
|
|
6782
6825
|
"text": "boolean"
|
|
6783
6826
|
},
|
|
6784
6827
|
"default": "false",
|
|
6828
|
+
"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.",
|
|
6785
6829
|
"fieldName": "movingView"
|
|
6786
6830
|
},
|
|
6787
6831
|
{
|
|
@@ -6789,44 +6833,42 @@
|
|
|
6789
6833
|
"type": {
|
|
6790
6834
|
"text": "string"
|
|
6791
6835
|
},
|
|
6836
|
+
"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.",
|
|
6792
6837
|
"fieldName": "orderBy"
|
|
6793
6838
|
},
|
|
6794
6839
|
{
|
|
6795
|
-
"name": "resource-name",
|
|
6796
6840
|
"type": {
|
|
6797
|
-
"text": "
|
|
6841
|
+
"text": "boolean"
|
|
6798
6842
|
},
|
|
6799
|
-
"
|
|
6843
|
+
"default": "false",
|
|
6844
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
6845
|
+
"fieldName": "reverse"
|
|
6800
6846
|
},
|
|
6801
6847
|
{
|
|
6848
|
+
"name": "disable-polling",
|
|
6802
6849
|
"type": {
|
|
6803
6850
|
"text": "boolean"
|
|
6804
6851
|
},
|
|
6805
6852
|
"default": "false",
|
|
6806
|
-
"
|
|
6853
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
6854
|
+
"fieldName": "disablePolling"
|
|
6807
6855
|
},
|
|
6808
6856
|
{
|
|
6809
|
-
"name": "
|
|
6857
|
+
"name": "offset",
|
|
6810
6858
|
"type": {
|
|
6811
6859
|
"text": "number"
|
|
6812
6860
|
},
|
|
6813
|
-
"
|
|
6861
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
6862
|
+
"fieldName": "offset"
|
|
6814
6863
|
},
|
|
6815
6864
|
{
|
|
6816
6865
|
"name": "polling-interval",
|
|
6817
6866
|
"type": {
|
|
6818
6867
|
"text": "number"
|
|
6819
6868
|
},
|
|
6869
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
6820
6870
|
"fieldName": "pollingInterval"
|
|
6821
6871
|
},
|
|
6822
|
-
{
|
|
6823
|
-
"name": "disable-polling",
|
|
6824
|
-
"type": {
|
|
6825
|
-
"text": "boolean"
|
|
6826
|
-
},
|
|
6827
|
-
"default": "false",
|
|
6828
|
-
"fieldName": "disablePolling"
|
|
6829
|
-
},
|
|
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,35 @@
|
|
|
7265
7310
|
},
|
|
7266
7311
|
{
|
|
7267
7312
|
"kind": "field",
|
|
7268
|
-
"name": "
|
|
7313
|
+
"name": "resourceName",
|
|
7314
|
+
"type": {
|
|
7315
|
+
"text": "string"
|
|
7316
|
+
},
|
|
7317
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
7318
|
+
"inheritedFrom": {
|
|
7319
|
+
"name": "GenesisGridDatasourceElement",
|
|
7320
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7321
|
+
}
|
|
7322
|
+
},
|
|
7323
|
+
{
|
|
7324
|
+
"kind": "field",
|
|
7325
|
+
"name": "viewNumber",
|
|
7269
7326
|
"type": {
|
|
7270
7327
|
"text": "number"
|
|
7271
7328
|
},
|
|
7329
|
+
"description": "The desired view/page you want data from.",
|
|
7330
|
+
"inheritedFrom": {
|
|
7331
|
+
"name": "GenesisGridDatasourceElement",
|
|
7332
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7333
|
+
}
|
|
7334
|
+
},
|
|
7335
|
+
{
|
|
7336
|
+
"kind": "field",
|
|
7337
|
+
"name": "fields",
|
|
7338
|
+
"type": {
|
|
7339
|
+
"text": "string"
|
|
7340
|
+
},
|
|
7341
|
+
"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.",
|
|
7272
7342
|
"inheritedFrom": {
|
|
7273
7343
|
"name": "GenesisGridDatasourceElement",
|
|
7274
7344
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7280,6 +7350,7 @@
|
|
|
7280
7350
|
"type": {
|
|
7281
7351
|
"text": "number"
|
|
7282
7352
|
},
|
|
7353
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
7283
7354
|
"inheritedFrom": {
|
|
7284
7355
|
"name": "GenesisGridDatasourceElement",
|
|
7285
7356
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7292,6 +7363,7 @@
|
|
|
7292
7363
|
"text": "boolean"
|
|
7293
7364
|
},
|
|
7294
7365
|
"default": "false",
|
|
7366
|
+
"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.",
|
|
7295
7367
|
"inheritedFrom": {
|
|
7296
7368
|
"name": "GenesisGridDatasourceElement",
|
|
7297
7369
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7303,6 +7375,7 @@
|
|
|
7303
7375
|
"type": {
|
|
7304
7376
|
"text": "string"
|
|
7305
7377
|
},
|
|
7378
|
+
"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.",
|
|
7306
7379
|
"inheritedFrom": {
|
|
7307
7380
|
"name": "GenesisGridDatasourceElement",
|
|
7308
7381
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7310,10 +7383,12 @@
|
|
|
7310
7383
|
},
|
|
7311
7384
|
{
|
|
7312
7385
|
"kind": "field",
|
|
7313
|
-
"name": "
|
|
7386
|
+
"name": "reverse",
|
|
7314
7387
|
"type": {
|
|
7315
|
-
"text": "
|
|
7388
|
+
"text": "boolean"
|
|
7316
7389
|
},
|
|
7390
|
+
"default": "false",
|
|
7391
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
7317
7392
|
"inheritedFrom": {
|
|
7318
7393
|
"name": "GenesisGridDatasourceElement",
|
|
7319
7394
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7321,11 +7396,12 @@
|
|
|
7321
7396
|
},
|
|
7322
7397
|
{
|
|
7323
7398
|
"kind": "field",
|
|
7324
|
-
"name": "
|
|
7399
|
+
"name": "disablePolling",
|
|
7325
7400
|
"type": {
|
|
7326
7401
|
"text": "boolean"
|
|
7327
7402
|
},
|
|
7328
7403
|
"default": "false",
|
|
7404
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
7329
7405
|
"inheritedFrom": {
|
|
7330
7406
|
"name": "GenesisGridDatasourceElement",
|
|
7331
7407
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7333,10 +7409,11 @@
|
|
|
7333
7409
|
},
|
|
7334
7410
|
{
|
|
7335
7411
|
"kind": "field",
|
|
7336
|
-
"name": "
|
|
7412
|
+
"name": "offset",
|
|
7337
7413
|
"type": {
|
|
7338
7414
|
"text": "number"
|
|
7339
7415
|
},
|
|
7416
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
7340
7417
|
"inheritedFrom": {
|
|
7341
7418
|
"name": "GenesisGridDatasourceElement",
|
|
7342
7419
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7348,6 +7425,7 @@
|
|
|
7348
7425
|
"type": {
|
|
7349
7426
|
"text": "number"
|
|
7350
7427
|
},
|
|
7428
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
7351
7429
|
"inheritedFrom": {
|
|
7352
7430
|
"name": "GenesisGridDatasourceElement",
|
|
7353
7431
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7360,18 +7438,7 @@
|
|
|
7360
7438
|
"text": "string[]"
|
|
7361
7439
|
},
|
|
7362
7440
|
"default": "[]",
|
|
7363
|
-
"
|
|
7364
|
-
"name": "GenesisGridDatasourceElement",
|
|
7365
|
-
"module": "src/datasource/base.datasource.ts"
|
|
7366
|
-
}
|
|
7367
|
-
},
|
|
7368
|
-
{
|
|
7369
|
-
"kind": "field",
|
|
7370
|
-
"name": "disablePolling",
|
|
7371
|
-
"type": {
|
|
7372
|
-
"text": "boolean"
|
|
7373
|
-
},
|
|
7374
|
-
"default": "false",
|
|
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,6 +7804,7 @@
|
|
|
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",
|
|
@@ -7743,34 +7812,61 @@
|
|
|
7743
7812
|
}
|
|
7744
7813
|
},
|
|
7745
7814
|
{
|
|
7746
|
-
"name": "
|
|
7815
|
+
"name": "is-snapshot",
|
|
7747
7816
|
"type": {
|
|
7748
|
-
"text": "
|
|
7817
|
+
"text": "boolean"
|
|
7749
7818
|
},
|
|
7750
|
-
"
|
|
7819
|
+
"default": "false",
|
|
7820
|
+
"description": "Request a snapshot from the server.",
|
|
7821
|
+
"fieldName": "isSnapshot",
|
|
7751
7822
|
"inheritedFrom": {
|
|
7752
7823
|
"name": "GenesisGridDatasourceElement",
|
|
7753
7824
|
"module": "src/datasource/base.datasource.ts"
|
|
7754
7825
|
}
|
|
7755
7826
|
},
|
|
7756
7827
|
{
|
|
7757
|
-
"name": "
|
|
7828
|
+
"name": "max-rows",
|
|
7758
7829
|
"type": {
|
|
7759
|
-
"text": "
|
|
7830
|
+
"text": "number"
|
|
7760
7831
|
},
|
|
7761
|
-
"
|
|
7762
|
-
"fieldName": "
|
|
7832
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
7833
|
+
"fieldName": "maxRows",
|
|
7763
7834
|
"inheritedFrom": {
|
|
7764
7835
|
"name": "GenesisGridDatasourceElement",
|
|
7765
7836
|
"module": "src/datasource/base.datasource.ts"
|
|
7766
7837
|
}
|
|
7767
7838
|
},
|
|
7768
7839
|
{
|
|
7769
|
-
"name": "
|
|
7840
|
+
"name": "resource-name",
|
|
7841
|
+
"type": {
|
|
7842
|
+
"text": "string"
|
|
7843
|
+
},
|
|
7844
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
7845
|
+
"fieldName": "resourceName",
|
|
7846
|
+
"inheritedFrom": {
|
|
7847
|
+
"name": "GenesisGridDatasourceElement",
|
|
7848
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7849
|
+
}
|
|
7850
|
+
},
|
|
7851
|
+
{
|
|
7852
|
+
"name": "view-number",
|
|
7770
7853
|
"type": {
|
|
7771
7854
|
"text": "number"
|
|
7772
7855
|
},
|
|
7773
|
-
"
|
|
7856
|
+
"description": "The desired view/page you want data from.",
|
|
7857
|
+
"fieldName": "viewNumber",
|
|
7858
|
+
"inheritedFrom": {
|
|
7859
|
+
"name": "GenesisGridDatasourceElement",
|
|
7860
|
+
"module": "src/datasource/base.datasource.ts"
|
|
7861
|
+
}
|
|
7862
|
+
},
|
|
7863
|
+
{
|
|
7864
|
+
"name": "fields",
|
|
7865
|
+
"type": {
|
|
7866
|
+
"text": "string"
|
|
7867
|
+
},
|
|
7868
|
+
"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.",
|
|
7869
|
+
"fieldName": "fields",
|
|
7774
7870
|
"inheritedFrom": {
|
|
7775
7871
|
"name": "GenesisGridDatasourceElement",
|
|
7776
7872
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7781,6 +7877,7 @@
|
|
|
7781
7877
|
"type": {
|
|
7782
7878
|
"text": "number"
|
|
7783
7879
|
},
|
|
7880
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
7784
7881
|
"fieldName": "maxView",
|
|
7785
7882
|
"inheritedFrom": {
|
|
7786
7883
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -7793,6 +7890,7 @@
|
|
|
7793
7890
|
"text": "boolean"
|
|
7794
7891
|
},
|
|
7795
7892
|
"default": "false",
|
|
7893
|
+
"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.",
|
|
7796
7894
|
"fieldName": "movingView",
|
|
7797
7895
|
"inheritedFrom": {
|
|
7798
7896
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -7804,6 +7902,7 @@
|
|
|
7804
7902
|
"type": {
|
|
7805
7903
|
"text": "string"
|
|
7806
7904
|
},
|
|
7905
|
+
"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.",
|
|
7807
7906
|
"fieldName": "orderBy",
|
|
7808
7907
|
"inheritedFrom": {
|
|
7809
7908
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -7811,33 +7910,37 @@
|
|
|
7811
7910
|
}
|
|
7812
7911
|
},
|
|
7813
7912
|
{
|
|
7814
|
-
"name": "resource-name",
|
|
7815
7913
|
"type": {
|
|
7816
|
-
"text": "
|
|
7914
|
+
"text": "boolean"
|
|
7817
7915
|
},
|
|
7818
|
-
"
|
|
7916
|
+
"default": "false",
|
|
7917
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
7918
|
+
"fieldName": "reverse",
|
|
7819
7919
|
"inheritedFrom": {
|
|
7820
7920
|
"name": "GenesisGridDatasourceElement",
|
|
7821
7921
|
"module": "src/datasource/base.datasource.ts"
|
|
7822
7922
|
}
|
|
7823
7923
|
},
|
|
7824
7924
|
{
|
|
7925
|
+
"name": "disable-polling",
|
|
7825
7926
|
"type": {
|
|
7826
7927
|
"text": "boolean"
|
|
7827
7928
|
},
|
|
7828
7929
|
"default": "false",
|
|
7829
|
-
"
|
|
7930
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
7931
|
+
"fieldName": "disablePolling",
|
|
7830
7932
|
"inheritedFrom": {
|
|
7831
7933
|
"name": "GenesisGridDatasourceElement",
|
|
7832
7934
|
"module": "src/datasource/base.datasource.ts"
|
|
7833
7935
|
}
|
|
7834
7936
|
},
|
|
7835
7937
|
{
|
|
7836
|
-
"name": "
|
|
7938
|
+
"name": "offset",
|
|
7837
7939
|
"type": {
|
|
7838
7940
|
"text": "number"
|
|
7839
7941
|
},
|
|
7840
|
-
"
|
|
7942
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
7943
|
+
"fieldName": "offset",
|
|
7841
7944
|
"inheritedFrom": {
|
|
7842
7945
|
"name": "GenesisGridDatasourceElement",
|
|
7843
7946
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -7848,24 +7951,13 @@
|
|
|
7848
7951
|
"type": {
|
|
7849
7952
|
"text": "number"
|
|
7850
7953
|
},
|
|
7954
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
7851
7955
|
"fieldName": "pollingInterval",
|
|
7852
7956
|
"inheritedFrom": {
|
|
7853
7957
|
"name": "GenesisGridDatasourceElement",
|
|
7854
7958
|
"module": "src/datasource/base.datasource.ts"
|
|
7855
7959
|
}
|
|
7856
7960
|
},
|
|
7857
|
-
{
|
|
7858
|
-
"name": "disable-polling",
|
|
7859
|
-
"type": {
|
|
7860
|
-
"text": "boolean"
|
|
7861
|
-
},
|
|
7862
|
-
"default": "false",
|
|
7863
|
-
"fieldName": "disablePolling",
|
|
7864
|
-
"inheritedFrom": {
|
|
7865
|
-
"name": "GenesisGridDatasourceElement",
|
|
7866
|
-
"module": "src/datasource/base.datasource.ts"
|
|
7867
|
-
}
|
|
7868
|
-
},
|
|
7869
7961
|
{
|
|
7870
7962
|
"name": "request-auto-setup",
|
|
7871
7963
|
"type": {
|
|
@@ -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,35 @@
|
|
|
9001
9122
|
},
|
|
9002
9123
|
{
|
|
9003
9124
|
"kind": "field",
|
|
9004
|
-
"name": "
|
|
9125
|
+
"name": "resourceName",
|
|
9126
|
+
"type": {
|
|
9127
|
+
"text": "string"
|
|
9128
|
+
},
|
|
9129
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
9130
|
+
"inheritedFrom": {
|
|
9131
|
+
"name": "GenesisGridDatasourceElement",
|
|
9132
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9133
|
+
}
|
|
9134
|
+
},
|
|
9135
|
+
{
|
|
9136
|
+
"kind": "field",
|
|
9137
|
+
"name": "viewNumber",
|
|
9005
9138
|
"type": {
|
|
9006
9139
|
"text": "number"
|
|
9007
9140
|
},
|
|
9141
|
+
"description": "The desired view/page you want data from.",
|
|
9142
|
+
"inheritedFrom": {
|
|
9143
|
+
"name": "GenesisGridDatasourceElement",
|
|
9144
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9145
|
+
}
|
|
9146
|
+
},
|
|
9147
|
+
{
|
|
9148
|
+
"kind": "field",
|
|
9149
|
+
"name": "fields",
|
|
9150
|
+
"type": {
|
|
9151
|
+
"text": "string"
|
|
9152
|
+
},
|
|
9153
|
+
"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.",
|
|
9008
9154
|
"inheritedFrom": {
|
|
9009
9155
|
"name": "GenesisGridDatasourceElement",
|
|
9010
9156
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9016,6 +9162,7 @@
|
|
|
9016
9162
|
"type": {
|
|
9017
9163
|
"text": "number"
|
|
9018
9164
|
},
|
|
9165
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
9019
9166
|
"inheritedFrom": {
|
|
9020
9167
|
"name": "GenesisGridDatasourceElement",
|
|
9021
9168
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9028,6 +9175,7 @@
|
|
|
9028
9175
|
"text": "boolean"
|
|
9029
9176
|
},
|
|
9030
9177
|
"default": "false",
|
|
9178
|
+
"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.",
|
|
9031
9179
|
"inheritedFrom": {
|
|
9032
9180
|
"name": "GenesisGridDatasourceElement",
|
|
9033
9181
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9039,6 +9187,7 @@
|
|
|
9039
9187
|
"type": {
|
|
9040
9188
|
"text": "string"
|
|
9041
9189
|
},
|
|
9190
|
+
"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.",
|
|
9042
9191
|
"inheritedFrom": {
|
|
9043
9192
|
"name": "GenesisGridDatasourceElement",
|
|
9044
9193
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9046,10 +9195,12 @@
|
|
|
9046
9195
|
},
|
|
9047
9196
|
{
|
|
9048
9197
|
"kind": "field",
|
|
9049
|
-
"name": "
|
|
9198
|
+
"name": "reverse",
|
|
9050
9199
|
"type": {
|
|
9051
|
-
"text": "
|
|
9200
|
+
"text": "boolean"
|
|
9052
9201
|
},
|
|
9202
|
+
"default": "false",
|
|
9203
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
9053
9204
|
"inheritedFrom": {
|
|
9054
9205
|
"name": "GenesisGridDatasourceElement",
|
|
9055
9206
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9057,11 +9208,12 @@
|
|
|
9057
9208
|
},
|
|
9058
9209
|
{
|
|
9059
9210
|
"kind": "field",
|
|
9060
|
-
"name": "
|
|
9211
|
+
"name": "disablePolling",
|
|
9061
9212
|
"type": {
|
|
9062
9213
|
"text": "boolean"
|
|
9063
9214
|
},
|
|
9064
9215
|
"default": "false",
|
|
9216
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
9065
9217
|
"inheritedFrom": {
|
|
9066
9218
|
"name": "GenesisGridDatasourceElement",
|
|
9067
9219
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9069,10 +9221,11 @@
|
|
|
9069
9221
|
},
|
|
9070
9222
|
{
|
|
9071
9223
|
"kind": "field",
|
|
9072
|
-
"name": "
|
|
9224
|
+
"name": "offset",
|
|
9073
9225
|
"type": {
|
|
9074
9226
|
"text": "number"
|
|
9075
9227
|
},
|
|
9228
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
9076
9229
|
"inheritedFrom": {
|
|
9077
9230
|
"name": "GenesisGridDatasourceElement",
|
|
9078
9231
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9084,6 +9237,7 @@
|
|
|
9084
9237
|
"type": {
|
|
9085
9238
|
"text": "number"
|
|
9086
9239
|
},
|
|
9240
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
9087
9241
|
"inheritedFrom": {
|
|
9088
9242
|
"name": "GenesisGridDatasourceElement",
|
|
9089
9243
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9096,18 +9250,7 @@
|
|
|
9096
9250
|
"text": "string[]"
|
|
9097
9251
|
},
|
|
9098
9252
|
"default": "[]",
|
|
9099
|
-
"
|
|
9100
|
-
"name": "GenesisGridDatasourceElement",
|
|
9101
|
-
"module": "src/datasource/base.datasource.ts"
|
|
9102
|
-
}
|
|
9103
|
-
},
|
|
9104
|
-
{
|
|
9105
|
-
"kind": "field",
|
|
9106
|
-
"name": "disablePolling",
|
|
9107
|
-
"type": {
|
|
9108
|
-
"text": "boolean"
|
|
9109
|
-
},
|
|
9110
|
-
"default": "false",
|
|
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,34 +9592,61 @@
|
|
|
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": "resource-name",
|
|
9621
|
+
"type": {
|
|
9622
|
+
"text": "string"
|
|
9623
|
+
},
|
|
9624
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
9625
|
+
"fieldName": "resourceName",
|
|
9626
|
+
"inheritedFrom": {
|
|
9627
|
+
"name": "GenesisGridDatasourceElement",
|
|
9628
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9629
|
+
}
|
|
9630
|
+
},
|
|
9631
|
+
{
|
|
9632
|
+
"name": "view-number",
|
|
9474
9633
|
"type": {
|
|
9475
9634
|
"text": "number"
|
|
9476
9635
|
},
|
|
9477
|
-
"
|
|
9636
|
+
"description": "The desired view/page you want data from.",
|
|
9637
|
+
"fieldName": "viewNumber",
|
|
9638
|
+
"inheritedFrom": {
|
|
9639
|
+
"name": "GenesisGridDatasourceElement",
|
|
9640
|
+
"module": "src/datasource/base.datasource.ts"
|
|
9641
|
+
}
|
|
9642
|
+
},
|
|
9643
|
+
{
|
|
9644
|
+
"name": "fields",
|
|
9645
|
+
"type": {
|
|
9646
|
+
"text": "string"
|
|
9647
|
+
},
|
|
9648
|
+
"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.",
|
|
9649
|
+
"fieldName": "fields",
|
|
9478
9650
|
"inheritedFrom": {
|
|
9479
9651
|
"name": "GenesisGridDatasourceElement",
|
|
9480
9652
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -9485,6 +9657,7 @@
|
|
|
9485
9657
|
"type": {
|
|
9486
9658
|
"text": "number"
|
|
9487
9659
|
},
|
|
9660
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
9488
9661
|
"fieldName": "maxView",
|
|
9489
9662
|
"inheritedFrom": {
|
|
9490
9663
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -9497,6 +9670,7 @@
|
|
|
9497
9670
|
"text": "boolean"
|
|
9498
9671
|
},
|
|
9499
9672
|
"default": "false",
|
|
9673
|
+
"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.",
|
|
9500
9674
|
"fieldName": "movingView",
|
|
9501
9675
|
"inheritedFrom": {
|
|
9502
9676
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -9508,28 +9682,19 @@
|
|
|
9508
9682
|
"type": {
|
|
9509
9683
|
"text": "string"
|
|
9510
9684
|
},
|
|
9685
|
+
"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.",
|
|
9511
9686
|
"fieldName": "orderBy",
|
|
9512
9687
|
"inheritedFrom": {
|
|
9513
9688
|
"name": "GenesisGridDatasourceElement",
|
|
9514
9689
|
"module": "src/datasource/base.datasource.ts"
|
|
9515
9690
|
}
|
|
9516
9691
|
},
|
|
9517
|
-
{
|
|
9518
|
-
"name": "resource-name",
|
|
9519
|
-
"type": {
|
|
9520
|
-
"text": "string"
|
|
9521
|
-
},
|
|
9522
|
-
"fieldName": "resourceName",
|
|
9523
|
-
"inheritedFrom": {
|
|
9524
|
-
"name": "GenesisGridDatasourceElement",
|
|
9525
|
-
"module": "src/datasource/base.datasource.ts"
|
|
9526
|
-
}
|
|
9527
|
-
},
|
|
9528
9692
|
{
|
|
9529
9693
|
"type": {
|
|
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"
|
|
@@ -9813,6 +9981,7 @@
|
|
|
9813
9981
|
"type": {
|
|
9814
9982
|
"text": "any"
|
|
9815
9983
|
},
|
|
9984
|
+
"description": "Similar to fields but for Request Server scenarios. This optional parameter enables you to specify request fields, which can include wildcards.",
|
|
9816
9985
|
"inheritedFrom": {
|
|
9817
9986
|
"name": "GenesisGridDatasourceElement",
|
|
9818
9987
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10543,6 +10712,7 @@
|
|
|
10543
10712
|
"type": {
|
|
10544
10713
|
"text": "string"
|
|
10545
10714
|
},
|
|
10715
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
10546
10716
|
"inheritedFrom": {
|
|
10547
10717
|
"name": "GenesisGridDatasourceElement",
|
|
10548
10718
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10550,10 +10720,12 @@
|
|
|
10550
10720
|
},
|
|
10551
10721
|
{
|
|
10552
10722
|
"kind": "field",
|
|
10553
|
-
"name": "
|
|
10723
|
+
"name": "isSnapshot",
|
|
10554
10724
|
"type": {
|
|
10555
|
-
"text": "
|
|
10725
|
+
"text": "boolean"
|
|
10556
10726
|
},
|
|
10727
|
+
"default": "false",
|
|
10728
|
+
"description": "Request a snapshot from the server.",
|
|
10557
10729
|
"inheritedFrom": {
|
|
10558
10730
|
"name": "GenesisGridDatasourceElement",
|
|
10559
10731
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10561,11 +10733,11 @@
|
|
|
10561
10733
|
},
|
|
10562
10734
|
{
|
|
10563
10735
|
"kind": "field",
|
|
10564
|
-
"name": "
|
|
10736
|
+
"name": "maxRows",
|
|
10565
10737
|
"type": {
|
|
10566
|
-
"text": "
|
|
10738
|
+
"text": "number"
|
|
10567
10739
|
},
|
|
10568
|
-
"
|
|
10740
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
10569
10741
|
"inheritedFrom": {
|
|
10570
10742
|
"name": "GenesisGridDatasourceElement",
|
|
10571
10743
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10573,10 +10745,35 @@
|
|
|
10573
10745
|
},
|
|
10574
10746
|
{
|
|
10575
10747
|
"kind": "field",
|
|
10576
|
-
"name": "
|
|
10748
|
+
"name": "resourceName",
|
|
10749
|
+
"type": {
|
|
10750
|
+
"text": "string"
|
|
10751
|
+
},
|
|
10752
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
10753
|
+
"inheritedFrom": {
|
|
10754
|
+
"name": "GenesisGridDatasourceElement",
|
|
10755
|
+
"module": "src/datasource/base.datasource.ts"
|
|
10756
|
+
}
|
|
10757
|
+
},
|
|
10758
|
+
{
|
|
10759
|
+
"kind": "field",
|
|
10760
|
+
"name": "viewNumber",
|
|
10577
10761
|
"type": {
|
|
10578
10762
|
"text": "number"
|
|
10579
10763
|
},
|
|
10764
|
+
"description": "The desired view/page you want data from.",
|
|
10765
|
+
"inheritedFrom": {
|
|
10766
|
+
"name": "GenesisGridDatasourceElement",
|
|
10767
|
+
"module": "src/datasource/base.datasource.ts"
|
|
10768
|
+
}
|
|
10769
|
+
},
|
|
10770
|
+
{
|
|
10771
|
+
"kind": "field",
|
|
10772
|
+
"name": "fields",
|
|
10773
|
+
"type": {
|
|
10774
|
+
"text": "string"
|
|
10775
|
+
},
|
|
10776
|
+
"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.",
|
|
10580
10777
|
"inheritedFrom": {
|
|
10581
10778
|
"name": "GenesisGridDatasourceElement",
|
|
10582
10779
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10588,6 +10785,7 @@
|
|
|
10588
10785
|
"type": {
|
|
10589
10786
|
"text": "number"
|
|
10590
10787
|
},
|
|
10788
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
10591
10789
|
"inheritedFrom": {
|
|
10592
10790
|
"name": "GenesisGridDatasourceElement",
|
|
10593
10791
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10600,6 +10798,7 @@
|
|
|
10600
10798
|
"text": "boolean"
|
|
10601
10799
|
},
|
|
10602
10800
|
"default": "false",
|
|
10801
|
+
"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.",
|
|
10603
10802
|
"inheritedFrom": {
|
|
10604
10803
|
"name": "GenesisGridDatasourceElement",
|
|
10605
10804
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10611,6 +10810,7 @@
|
|
|
10611
10810
|
"type": {
|
|
10612
10811
|
"text": "string"
|
|
10613
10812
|
},
|
|
10813
|
+
"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.",
|
|
10614
10814
|
"inheritedFrom": {
|
|
10615
10815
|
"name": "GenesisGridDatasourceElement",
|
|
10616
10816
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10618,10 +10818,12 @@
|
|
|
10618
10818
|
},
|
|
10619
10819
|
{
|
|
10620
10820
|
"kind": "field",
|
|
10621
|
-
"name": "
|
|
10821
|
+
"name": "reverse",
|
|
10622
10822
|
"type": {
|
|
10623
|
-
"text": "
|
|
10823
|
+
"text": "boolean"
|
|
10624
10824
|
},
|
|
10825
|
+
"default": "false",
|
|
10826
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
10625
10827
|
"inheritedFrom": {
|
|
10626
10828
|
"name": "GenesisGridDatasourceElement",
|
|
10627
10829
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10629,11 +10831,12 @@
|
|
|
10629
10831
|
},
|
|
10630
10832
|
{
|
|
10631
10833
|
"kind": "field",
|
|
10632
|
-
"name": "
|
|
10834
|
+
"name": "disablePolling",
|
|
10633
10835
|
"type": {
|
|
10634
10836
|
"text": "boolean"
|
|
10635
10837
|
},
|
|
10636
10838
|
"default": "false",
|
|
10839
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
10637
10840
|
"inheritedFrom": {
|
|
10638
10841
|
"name": "GenesisGridDatasourceElement",
|
|
10639
10842
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10641,10 +10844,11 @@
|
|
|
10641
10844
|
},
|
|
10642
10845
|
{
|
|
10643
10846
|
"kind": "field",
|
|
10644
|
-
"name": "
|
|
10847
|
+
"name": "offset",
|
|
10645
10848
|
"type": {
|
|
10646
10849
|
"text": "number"
|
|
10647
10850
|
},
|
|
10851
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
10648
10852
|
"inheritedFrom": {
|
|
10649
10853
|
"name": "GenesisGridDatasourceElement",
|
|
10650
10854
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10656,6 +10860,7 @@
|
|
|
10656
10860
|
"type": {
|
|
10657
10861
|
"text": "number"
|
|
10658
10862
|
},
|
|
10863
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
10659
10864
|
"inheritedFrom": {
|
|
10660
10865
|
"name": "GenesisGridDatasourceElement",
|
|
10661
10866
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -10668,18 +10873,7 @@
|
|
|
10668
10873
|
"text": "string[]"
|
|
10669
10874
|
},
|
|
10670
10875
|
"default": "[]",
|
|
10671
|
-
"
|
|
10672
|
-
"name": "GenesisGridDatasourceElement",
|
|
10673
|
-
"module": "src/datasource/base.datasource.ts"
|
|
10674
|
-
}
|
|
10675
|
-
},
|
|
10676
|
-
{
|
|
10677
|
-
"kind": "field",
|
|
10678
|
-
"name": "disablePolling",
|
|
10679
|
-
"type": {
|
|
10680
|
-
"text": "boolean"
|
|
10681
|
-
},
|
|
10682
|
-
"default": "false",
|
|
10876
|
+
"description": "Array of event names that will trigger a poll when received as commit responses.",
|
|
10683
10877
|
"inheritedFrom": {
|
|
10684
10878
|
"name": "GenesisGridDatasourceElement",
|
|
10685
10879
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -11047,6 +11241,7 @@
|
|
|
11047
11241
|
"type": {
|
|
11048
11242
|
"text": "string"
|
|
11049
11243
|
},
|
|
11244
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
11050
11245
|
"fieldName": "criteria",
|
|
11051
11246
|
"inheritedFrom": {
|
|
11052
11247
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -11054,34 +11249,61 @@
|
|
|
11054
11249
|
}
|
|
11055
11250
|
},
|
|
11056
11251
|
{
|
|
11057
|
-
"name": "
|
|
11252
|
+
"name": "is-snapshot",
|
|
11058
11253
|
"type": {
|
|
11059
|
-
"text": "
|
|
11254
|
+
"text": "boolean"
|
|
11060
11255
|
},
|
|
11061
|
-
"
|
|
11256
|
+
"default": "false",
|
|
11257
|
+
"description": "Request a snapshot from the server.",
|
|
11258
|
+
"fieldName": "isSnapshot",
|
|
11062
11259
|
"inheritedFrom": {
|
|
11063
11260
|
"name": "GenesisGridDatasourceElement",
|
|
11064
11261
|
"module": "src/datasource/base.datasource.ts"
|
|
11065
11262
|
}
|
|
11066
11263
|
},
|
|
11067
11264
|
{
|
|
11068
|
-
"name": "
|
|
11265
|
+
"name": "max-rows",
|
|
11069
11266
|
"type": {
|
|
11070
|
-
"text": "
|
|
11267
|
+
"text": "number"
|
|
11071
11268
|
},
|
|
11072
|
-
"
|
|
11073
|
-
"fieldName": "
|
|
11269
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
11270
|
+
"fieldName": "maxRows",
|
|
11074
11271
|
"inheritedFrom": {
|
|
11075
11272
|
"name": "GenesisGridDatasourceElement",
|
|
11076
11273
|
"module": "src/datasource/base.datasource.ts"
|
|
11077
11274
|
}
|
|
11078
11275
|
},
|
|
11079
11276
|
{
|
|
11080
|
-
"name": "
|
|
11277
|
+
"name": "resource-name",
|
|
11278
|
+
"type": {
|
|
11279
|
+
"text": "string"
|
|
11280
|
+
},
|
|
11281
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
11282
|
+
"fieldName": "resourceName",
|
|
11283
|
+
"inheritedFrom": {
|
|
11284
|
+
"name": "GenesisGridDatasourceElement",
|
|
11285
|
+
"module": "src/datasource/base.datasource.ts"
|
|
11286
|
+
}
|
|
11287
|
+
},
|
|
11288
|
+
{
|
|
11289
|
+
"name": "view-number",
|
|
11081
11290
|
"type": {
|
|
11082
11291
|
"text": "number"
|
|
11083
11292
|
},
|
|
11084
|
-
"
|
|
11293
|
+
"description": "The desired view/page you want data from.",
|
|
11294
|
+
"fieldName": "viewNumber",
|
|
11295
|
+
"inheritedFrom": {
|
|
11296
|
+
"name": "GenesisGridDatasourceElement",
|
|
11297
|
+
"module": "src/datasource/base.datasource.ts"
|
|
11298
|
+
}
|
|
11299
|
+
},
|
|
11300
|
+
{
|
|
11301
|
+
"name": "fields",
|
|
11302
|
+
"type": {
|
|
11303
|
+
"text": "string"
|
|
11304
|
+
},
|
|
11305
|
+
"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.",
|
|
11306
|
+
"fieldName": "fields",
|
|
11085
11307
|
"inheritedFrom": {
|
|
11086
11308
|
"name": "GenesisGridDatasourceElement",
|
|
11087
11309
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -11092,6 +11314,7 @@
|
|
|
11092
11314
|
"type": {
|
|
11093
11315
|
"text": "number"
|
|
11094
11316
|
},
|
|
11317
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
11095
11318
|
"fieldName": "maxView",
|
|
11096
11319
|
"inheritedFrom": {
|
|
11097
11320
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -11104,6 +11327,7 @@
|
|
|
11104
11327
|
"text": "boolean"
|
|
11105
11328
|
},
|
|
11106
11329
|
"default": "false",
|
|
11330
|
+
"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.",
|
|
11107
11331
|
"fieldName": "movingView",
|
|
11108
11332
|
"inheritedFrom": {
|
|
11109
11333
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -11115,6 +11339,7 @@
|
|
|
11115
11339
|
"type": {
|
|
11116
11340
|
"text": "string"
|
|
11117
11341
|
},
|
|
11342
|
+
"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.",
|
|
11118
11343
|
"fieldName": "orderBy",
|
|
11119
11344
|
"inheritedFrom": {
|
|
11120
11345
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -11122,33 +11347,37 @@
|
|
|
11122
11347
|
}
|
|
11123
11348
|
},
|
|
11124
11349
|
{
|
|
11125
|
-
"name": "resource-name",
|
|
11126
11350
|
"type": {
|
|
11127
|
-
"text": "
|
|
11351
|
+
"text": "boolean"
|
|
11128
11352
|
},
|
|
11129
|
-
"
|
|
11353
|
+
"default": "false",
|
|
11354
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
11355
|
+
"fieldName": "reverse",
|
|
11130
11356
|
"inheritedFrom": {
|
|
11131
11357
|
"name": "GenesisGridDatasourceElement",
|
|
11132
11358
|
"module": "src/datasource/base.datasource.ts"
|
|
11133
11359
|
}
|
|
11134
11360
|
},
|
|
11135
11361
|
{
|
|
11362
|
+
"name": "disable-polling",
|
|
11136
11363
|
"type": {
|
|
11137
11364
|
"text": "boolean"
|
|
11138
11365
|
},
|
|
11139
11366
|
"default": "false",
|
|
11140
|
-
"
|
|
11367
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
11368
|
+
"fieldName": "disablePolling",
|
|
11141
11369
|
"inheritedFrom": {
|
|
11142
11370
|
"name": "GenesisGridDatasourceElement",
|
|
11143
11371
|
"module": "src/datasource/base.datasource.ts"
|
|
11144
11372
|
}
|
|
11145
11373
|
},
|
|
11146
11374
|
{
|
|
11147
|
-
"name": "
|
|
11375
|
+
"name": "offset",
|
|
11148
11376
|
"type": {
|
|
11149
11377
|
"text": "number"
|
|
11150
11378
|
},
|
|
11151
|
-
"
|
|
11379
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
11380
|
+
"fieldName": "offset",
|
|
11152
11381
|
"inheritedFrom": {
|
|
11153
11382
|
"name": "GenesisGridDatasourceElement",
|
|
11154
11383
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -11159,24 +11388,13 @@
|
|
|
11159
11388
|
"type": {
|
|
11160
11389
|
"text": "number"
|
|
11161
11390
|
},
|
|
11391
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
11162
11392
|
"fieldName": "pollingInterval",
|
|
11163
11393
|
"inheritedFrom": {
|
|
11164
11394
|
"name": "GenesisGridDatasourceElement",
|
|
11165
11395
|
"module": "src/datasource/base.datasource.ts"
|
|
11166
11396
|
}
|
|
11167
11397
|
},
|
|
11168
|
-
{
|
|
11169
|
-
"name": "disable-polling",
|
|
11170
|
-
"type": {
|
|
11171
|
-
"text": "boolean"
|
|
11172
|
-
},
|
|
11173
|
-
"default": "false",
|
|
11174
|
-
"fieldName": "disablePolling",
|
|
11175
|
-
"inheritedFrom": {
|
|
11176
|
-
"name": "GenesisGridDatasourceElement",
|
|
11177
|
-
"module": "src/datasource/base.datasource.ts"
|
|
11178
|
-
}
|
|
11179
|
-
},
|
|
11180
11398
|
{
|
|
11181
11399
|
"name": "request-auto-setup",
|
|
11182
11400
|
"type": {
|
|
@@ -13203,6 +13421,24 @@
|
|
|
13203
13421
|
},
|
|
13204
13422
|
"privacy": "private"
|
|
13205
13423
|
},
|
|
13424
|
+
{
|
|
13425
|
+
"kind": "field",
|
|
13426
|
+
"name": "_nextOffset",
|
|
13427
|
+
"type": {
|
|
13428
|
+
"text": "number"
|
|
13429
|
+
},
|
|
13430
|
+
"privacy": "private",
|
|
13431
|
+
"default": "0"
|
|
13432
|
+
},
|
|
13433
|
+
{
|
|
13434
|
+
"kind": "field",
|
|
13435
|
+
"name": "_loadMoreCount",
|
|
13436
|
+
"type": {
|
|
13437
|
+
"text": "number"
|
|
13438
|
+
},
|
|
13439
|
+
"privacy": "private",
|
|
13440
|
+
"default": "0"
|
|
13441
|
+
},
|
|
13206
13442
|
{
|
|
13207
13443
|
"kind": "method",
|
|
13208
13444
|
"name": "deepClone",
|
|
@@ -13954,6 +14190,7 @@
|
|
|
13954
14190
|
"type": {
|
|
13955
14191
|
"text": "string"
|
|
13956
14192
|
},
|
|
14193
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
13957
14194
|
"inheritedFrom": {
|
|
13958
14195
|
"name": "GenesisGridDatasourceElement",
|
|
13959
14196
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -13961,10 +14198,12 @@
|
|
|
13961
14198
|
},
|
|
13962
14199
|
{
|
|
13963
14200
|
"kind": "field",
|
|
13964
|
-
"name": "
|
|
14201
|
+
"name": "isSnapshot",
|
|
13965
14202
|
"type": {
|
|
13966
|
-
"text": "
|
|
14203
|
+
"text": "boolean"
|
|
13967
14204
|
},
|
|
14205
|
+
"default": "false",
|
|
14206
|
+
"description": "Request a snapshot from the server.",
|
|
13968
14207
|
"inheritedFrom": {
|
|
13969
14208
|
"name": "GenesisGridDatasourceElement",
|
|
13970
14209
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -13972,11 +14211,11 @@
|
|
|
13972
14211
|
},
|
|
13973
14212
|
{
|
|
13974
14213
|
"kind": "field",
|
|
13975
|
-
"name": "
|
|
14214
|
+
"name": "maxRows",
|
|
13976
14215
|
"type": {
|
|
13977
|
-
"text": "
|
|
14216
|
+
"text": "number"
|
|
13978
14217
|
},
|
|
13979
|
-
"
|
|
14218
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
13980
14219
|
"inheritedFrom": {
|
|
13981
14220
|
"name": "GenesisGridDatasourceElement",
|
|
13982
14221
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -13984,10 +14223,35 @@
|
|
|
13984
14223
|
},
|
|
13985
14224
|
{
|
|
13986
14225
|
"kind": "field",
|
|
13987
|
-
"name": "
|
|
14226
|
+
"name": "resourceName",
|
|
14227
|
+
"type": {
|
|
14228
|
+
"text": "string"
|
|
14229
|
+
},
|
|
14230
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
14231
|
+
"inheritedFrom": {
|
|
14232
|
+
"name": "GenesisGridDatasourceElement",
|
|
14233
|
+
"module": "src/datasource/base.datasource.ts"
|
|
14234
|
+
}
|
|
14235
|
+
},
|
|
14236
|
+
{
|
|
14237
|
+
"kind": "field",
|
|
14238
|
+
"name": "viewNumber",
|
|
13988
14239
|
"type": {
|
|
13989
14240
|
"text": "number"
|
|
13990
14241
|
},
|
|
14242
|
+
"description": "The desired view/page you want data from.",
|
|
14243
|
+
"inheritedFrom": {
|
|
14244
|
+
"name": "GenesisGridDatasourceElement",
|
|
14245
|
+
"module": "src/datasource/base.datasource.ts"
|
|
14246
|
+
}
|
|
14247
|
+
},
|
|
14248
|
+
{
|
|
14249
|
+
"kind": "field",
|
|
14250
|
+
"name": "fields",
|
|
14251
|
+
"type": {
|
|
14252
|
+
"text": "string"
|
|
14253
|
+
},
|
|
14254
|
+
"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.",
|
|
13991
14255
|
"inheritedFrom": {
|
|
13992
14256
|
"name": "GenesisGridDatasourceElement",
|
|
13993
14257
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -13999,6 +14263,7 @@
|
|
|
13999
14263
|
"type": {
|
|
14000
14264
|
"text": "number"
|
|
14001
14265
|
},
|
|
14266
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
14002
14267
|
"inheritedFrom": {
|
|
14003
14268
|
"name": "GenesisGridDatasourceElement",
|
|
14004
14269
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14011,6 +14276,7 @@
|
|
|
14011
14276
|
"text": "boolean"
|
|
14012
14277
|
},
|
|
14013
14278
|
"default": "false",
|
|
14279
|
+
"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.",
|
|
14014
14280
|
"inheritedFrom": {
|
|
14015
14281
|
"name": "GenesisGridDatasourceElement",
|
|
14016
14282
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14022,6 +14288,7 @@
|
|
|
14022
14288
|
"type": {
|
|
14023
14289
|
"text": "string"
|
|
14024
14290
|
},
|
|
14291
|
+
"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.",
|
|
14025
14292
|
"inheritedFrom": {
|
|
14026
14293
|
"name": "GenesisGridDatasourceElement",
|
|
14027
14294
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14029,10 +14296,12 @@
|
|
|
14029
14296
|
},
|
|
14030
14297
|
{
|
|
14031
14298
|
"kind": "field",
|
|
14032
|
-
"name": "
|
|
14299
|
+
"name": "reverse",
|
|
14033
14300
|
"type": {
|
|
14034
|
-
"text": "
|
|
14301
|
+
"text": "boolean"
|
|
14035
14302
|
},
|
|
14303
|
+
"default": "false",
|
|
14304
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
14036
14305
|
"inheritedFrom": {
|
|
14037
14306
|
"name": "GenesisGridDatasourceElement",
|
|
14038
14307
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14040,11 +14309,12 @@
|
|
|
14040
14309
|
},
|
|
14041
14310
|
{
|
|
14042
14311
|
"kind": "field",
|
|
14043
|
-
"name": "
|
|
14312
|
+
"name": "disablePolling",
|
|
14044
14313
|
"type": {
|
|
14045
14314
|
"text": "boolean"
|
|
14046
14315
|
},
|
|
14047
14316
|
"default": "false",
|
|
14317
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
14048
14318
|
"inheritedFrom": {
|
|
14049
14319
|
"name": "GenesisGridDatasourceElement",
|
|
14050
14320
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14052,10 +14322,11 @@
|
|
|
14052
14322
|
},
|
|
14053
14323
|
{
|
|
14054
14324
|
"kind": "field",
|
|
14055
|
-
"name": "
|
|
14325
|
+
"name": "offset",
|
|
14056
14326
|
"type": {
|
|
14057
14327
|
"text": "number"
|
|
14058
14328
|
},
|
|
14329
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
14059
14330
|
"inheritedFrom": {
|
|
14060
14331
|
"name": "GenesisGridDatasourceElement",
|
|
14061
14332
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14067,6 +14338,7 @@
|
|
|
14067
14338
|
"type": {
|
|
14068
14339
|
"text": "number"
|
|
14069
14340
|
},
|
|
14341
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
14070
14342
|
"inheritedFrom": {
|
|
14071
14343
|
"name": "GenesisGridDatasourceElement",
|
|
14072
14344
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14079,18 +14351,7 @@
|
|
|
14079
14351
|
"text": "string[]"
|
|
14080
14352
|
},
|
|
14081
14353
|
"default": "[]",
|
|
14082
|
-
"
|
|
14083
|
-
"name": "GenesisGridDatasourceElement",
|
|
14084
|
-
"module": "src/datasource/base.datasource.ts"
|
|
14085
|
-
}
|
|
14086
|
-
},
|
|
14087
|
-
{
|
|
14088
|
-
"kind": "field",
|
|
14089
|
-
"name": "disablePolling",
|
|
14090
|
-
"type": {
|
|
14091
|
-
"text": "boolean"
|
|
14092
|
-
},
|
|
14093
|
-
"default": "false",
|
|
14354
|
+
"description": "Array of event names that will trigger a poll when received as commit responses.",
|
|
14094
14355
|
"inheritedFrom": {
|
|
14095
14356
|
"name": "GenesisGridDatasourceElement",
|
|
14096
14357
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14102,6 +14363,7 @@
|
|
|
14102
14363
|
"type": {
|
|
14103
14364
|
"text": "any"
|
|
14104
14365
|
},
|
|
14366
|
+
"description": "Similar to fields but for Request Server scenarios. This optional parameter enables you to specify request fields, which can include wildcards.",
|
|
14105
14367
|
"inheritedFrom": {
|
|
14106
14368
|
"name": "GenesisGridDatasourceElement",
|
|
14107
14369
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14419,6 +14681,7 @@
|
|
|
14419
14681
|
"type": {
|
|
14420
14682
|
"text": "string"
|
|
14421
14683
|
},
|
|
14684
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
14422
14685
|
"fieldName": "criteria",
|
|
14423
14686
|
"inheritedFrom": {
|
|
14424
14687
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -14426,34 +14689,61 @@
|
|
|
14426
14689
|
}
|
|
14427
14690
|
},
|
|
14428
14691
|
{
|
|
14429
|
-
"name": "
|
|
14692
|
+
"name": "is-snapshot",
|
|
14430
14693
|
"type": {
|
|
14431
|
-
"text": "
|
|
14694
|
+
"text": "boolean"
|
|
14432
14695
|
},
|
|
14433
|
-
"
|
|
14696
|
+
"default": "false",
|
|
14697
|
+
"description": "Request a snapshot from the server.",
|
|
14698
|
+
"fieldName": "isSnapshot",
|
|
14434
14699
|
"inheritedFrom": {
|
|
14435
14700
|
"name": "GenesisGridDatasourceElement",
|
|
14436
14701
|
"module": "src/datasource/base.datasource.ts"
|
|
14437
14702
|
}
|
|
14438
14703
|
},
|
|
14439
14704
|
{
|
|
14440
|
-
"name": "
|
|
14705
|
+
"name": "max-rows",
|
|
14441
14706
|
"type": {
|
|
14442
|
-
"text": "
|
|
14707
|
+
"text": "number"
|
|
14443
14708
|
},
|
|
14444
|
-
"
|
|
14445
|
-
"fieldName": "
|
|
14709
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
14710
|
+
"fieldName": "maxRows",
|
|
14446
14711
|
"inheritedFrom": {
|
|
14447
14712
|
"name": "GenesisGridDatasourceElement",
|
|
14448
14713
|
"module": "src/datasource/base.datasource.ts"
|
|
14449
14714
|
}
|
|
14450
14715
|
},
|
|
14451
14716
|
{
|
|
14452
|
-
"name": "
|
|
14717
|
+
"name": "resource-name",
|
|
14718
|
+
"type": {
|
|
14719
|
+
"text": "string"
|
|
14720
|
+
},
|
|
14721
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
14722
|
+
"fieldName": "resourceName",
|
|
14723
|
+
"inheritedFrom": {
|
|
14724
|
+
"name": "GenesisGridDatasourceElement",
|
|
14725
|
+
"module": "src/datasource/base.datasource.ts"
|
|
14726
|
+
}
|
|
14727
|
+
},
|
|
14728
|
+
{
|
|
14729
|
+
"name": "view-number",
|
|
14453
14730
|
"type": {
|
|
14454
14731
|
"text": "number"
|
|
14455
14732
|
},
|
|
14456
|
-
"
|
|
14733
|
+
"description": "The desired view/page you want data from.",
|
|
14734
|
+
"fieldName": "viewNumber",
|
|
14735
|
+
"inheritedFrom": {
|
|
14736
|
+
"name": "GenesisGridDatasourceElement",
|
|
14737
|
+
"module": "src/datasource/base.datasource.ts"
|
|
14738
|
+
}
|
|
14739
|
+
},
|
|
14740
|
+
{
|
|
14741
|
+
"name": "fields",
|
|
14742
|
+
"type": {
|
|
14743
|
+
"text": "string"
|
|
14744
|
+
},
|
|
14745
|
+
"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.",
|
|
14746
|
+
"fieldName": "fields",
|
|
14457
14747
|
"inheritedFrom": {
|
|
14458
14748
|
"name": "GenesisGridDatasourceElement",
|
|
14459
14749
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14464,6 +14754,7 @@
|
|
|
14464
14754
|
"type": {
|
|
14465
14755
|
"text": "number"
|
|
14466
14756
|
},
|
|
14757
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
14467
14758
|
"fieldName": "maxView",
|
|
14468
14759
|
"inheritedFrom": {
|
|
14469
14760
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -14476,6 +14767,7 @@
|
|
|
14476
14767
|
"text": "boolean"
|
|
14477
14768
|
},
|
|
14478
14769
|
"default": "false",
|
|
14770
|
+
"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.",
|
|
14479
14771
|
"fieldName": "movingView",
|
|
14480
14772
|
"inheritedFrom": {
|
|
14481
14773
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -14487,6 +14779,7 @@
|
|
|
14487
14779
|
"type": {
|
|
14488
14780
|
"text": "string"
|
|
14489
14781
|
},
|
|
14782
|
+
"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.",
|
|
14490
14783
|
"fieldName": "orderBy",
|
|
14491
14784
|
"inheritedFrom": {
|
|
14492
14785
|
"name": "GenesisGridDatasourceElement",
|
|
@@ -14494,33 +14787,37 @@
|
|
|
14494
14787
|
}
|
|
14495
14788
|
},
|
|
14496
14789
|
{
|
|
14497
|
-
"name": "resource-name",
|
|
14498
14790
|
"type": {
|
|
14499
|
-
"text": "
|
|
14791
|
+
"text": "boolean"
|
|
14500
14792
|
},
|
|
14501
|
-
"
|
|
14793
|
+
"default": "false",
|
|
14794
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
14795
|
+
"fieldName": "reverse",
|
|
14502
14796
|
"inheritedFrom": {
|
|
14503
14797
|
"name": "GenesisGridDatasourceElement",
|
|
14504
14798
|
"module": "src/datasource/base.datasource.ts"
|
|
14505
14799
|
}
|
|
14506
14800
|
},
|
|
14507
14801
|
{
|
|
14802
|
+
"name": "disable-polling",
|
|
14508
14803
|
"type": {
|
|
14509
14804
|
"text": "boolean"
|
|
14510
14805
|
},
|
|
14511
14806
|
"default": "false",
|
|
14512
|
-
"
|
|
14807
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
14808
|
+
"fieldName": "disablePolling",
|
|
14513
14809
|
"inheritedFrom": {
|
|
14514
14810
|
"name": "GenesisGridDatasourceElement",
|
|
14515
14811
|
"module": "src/datasource/base.datasource.ts"
|
|
14516
14812
|
}
|
|
14517
14813
|
},
|
|
14518
14814
|
{
|
|
14519
|
-
"name": "
|
|
14815
|
+
"name": "offset",
|
|
14520
14816
|
"type": {
|
|
14521
14817
|
"text": "number"
|
|
14522
14818
|
},
|
|
14523
|
-
"
|
|
14819
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
14820
|
+
"fieldName": "offset",
|
|
14524
14821
|
"inheritedFrom": {
|
|
14525
14822
|
"name": "GenesisGridDatasourceElement",
|
|
14526
14823
|
"module": "src/datasource/base.datasource.ts"
|
|
@@ -14531,24 +14828,13 @@
|
|
|
14531
14828
|
"type": {
|
|
14532
14829
|
"text": "number"
|
|
14533
14830
|
},
|
|
14831
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
14534
14832
|
"fieldName": "pollingInterval",
|
|
14535
14833
|
"inheritedFrom": {
|
|
14536
14834
|
"name": "GenesisGridDatasourceElement",
|
|
14537
14835
|
"module": "src/datasource/base.datasource.ts"
|
|
14538
14836
|
}
|
|
14539
14837
|
},
|
|
14540
|
-
{
|
|
14541
|
-
"name": "disable-polling",
|
|
14542
|
-
"type": {
|
|
14543
|
-
"text": "boolean"
|
|
14544
|
-
},
|
|
14545
|
-
"default": "false",
|
|
14546
|
-
"fieldName": "disablePolling",
|
|
14547
|
-
"inheritedFrom": {
|
|
14548
|
-
"name": "GenesisGridDatasourceElement",
|
|
14549
|
-
"module": "src/datasource/base.datasource.ts"
|
|
14550
|
-
}
|
|
14551
|
-
},
|
|
14552
14838
|
{
|
|
14553
14839
|
"name": "request-auto-setup",
|
|
14554
14840
|
"type": {
|