FeatureLayerDataSource

Interface

FeatureLayerDataSource is created from a single feature layer of feature service, map service or webmap/webscene.

The source of feature layer data source may be from -

  1. an array directly ( sourceRecords ), isDataInDataSourceInstance is true for such data sources, or,
  2. an ArcGIS Maps SDK for JavaScript feature layer, or,
  3. an AGOL/portal item or a remote database.

Please note, for the 2, the feature layer can be both client-side or server-side.

Inheritance: FeatureLayerDataSourceArcGISQueriableDataSource

Properties

Hide inherited properties
PropertyTypeNotes
() => void

When current data source is created from an array of records, it will be saved in sourceRecords . Add the version of sourceRecords .setSourceRecords will add the version by default.

addVersion
inherited
() => void

Update data source version.

() => boolean

Return whether all child data sources (including descendant data sources) are created. Data source has this method only if it is data source set ( dataSource.isDataSourceSet is true).

The data source which this data source derives from.

() => Promise<DataSource[]>

All child data sources (including descendant data sources) are ready for use. Data source has this method only if it is data source set ( dataSource.isDataSourceSet is true).

clearRecords
inherited
() => void

This function will clear the loaded records and won't clear the sourceRecords. Once the loaded records are cleared, the version in the data source info will be updated.

() => void

Clear both sourceRecords and loaded records. Both source version and version in data source info will be updated.

count
inherited
number

The total records count depends on the current query

(dataSourceIdstring) => Promise<DataSource>

Create a child or a descendant data source by id. Data source has this method only if it is data source set ( dataSource.isDataSourceSet is true).

(dataSource?DataSource, useDataSourceQueryParams?boolean, throwError?boolean) => Promise<Layer>

Default dataSource is the current data source. Default useDataSourceQueryParams is true, that is to say apply the data source's query params to the created ArcGIS Maps SDK for JavaScript layer by default. Default throwError is false, that is to say the method won't throw error and will return undefined if the creation fail.

The data source manager, which is used to manage the data source, including create/get/destroy the data source instance.

dataViewId
inherited
string

The data view ID configured in JSON.

destroy
inherited
() => void

Destroy the data source.

() => DataSource[]

Return all child data sources of a parent data source, includes the grandchildren

() => DataSource[]

Return the derived data views and local data sources.

() => DataRecord[]

Get records of all the loaded pages.

() => number

If the return value > 0, auto refresh is enabled.

(jimuChildIdstring) => DataSource

Get child data source by jimuChildId . You can get jimuChildId by getJimuChildId() .

() => DataSource[]

Return child data sources of a parent data source.

Return data source count status.

() => string

Get the current loaded record id, which is used in loadById method.

() => IMDataSourceJson

The data source JSON object in app config.

() => IMDataViewJson

Return the config of the current data source.

getInfo
inherited
() => IMDataSourceInfo

Return the data source info in redux store.

getLabel
inherited
() => string

Return data source label.

() => boolean

Return whether listen selection.

(localIdstring) => DataSource

Get local data source by local ID.

() => DataSource[]

Return all local data sources created from a main data source or data view.

() => number

Null means there is no record count limit, and will return all records from the service.

(pageSizenumber, pagenumber) => number[]

Get real query page depends on the widget's request page.

getRecord
inherited
(indexnumber) => DataRecord

Get record by index

getRecordById
inherited
(idstring) => DataRecord

Get record by ID

getRecords
inherited
() => DataRecord[]

Get records of the loaded continuous pages. If the loaded pages are 1, 2, and 10, will only return records on the page 1 and 2.

(pagenumber, pageSizenumber) => DataRecord[]

The page size here defines the records this method returns, which are not the actual query pageSize. Will use a fixed pageSize to query and cache data.

(pagenumber, pageSizenumber) => DataRecord[]

If selected records are not loaded in the current data source, will concat them to the end of records array. See getRecordsWithSelection for details.

() => DataRecord[]

If selected records are not loaded in the current data source, they will be concatenated to the end of records array. For example, record 1 is selected in data view 1 and it is not loaded in data view 2 (record 1 actually matches query params of data view 2), dataView2.getRecordsWithSelection() will return all loaded records in data view 2 and record 1.

Get the query parameters configured in remote (not in exb).

Return the root data source.

(excludeWidgetId?string) => QueryParams

Get the queries applied in runtime. If the excludeWidgetId is passed in, the queries of this widget will be excluded.

getSchema
inherited

The schema returned here is the merged result of the configured schema and the fetched schema. The configured schema is the user's changes, such as a new data source name. The fetched schema is the original schema from AGOL/portal item or a remote database, such as the service name, the fields and the filters.

() => string[]

Get selected record IDs

() => number[]

Get selected record indexes

() => DataRecord[]

Get selected records

() => number

When current data source is created from an array of records, it will be saved in sourceRecords . Return the version of sourceRecords .

getStatus
inherited

Return data source status.

getVersion
inherited
() => number

Return data source version.

id
inherited
string

The data source ID.

boolean

Whether a data source contains child data sources. A set data source won't create all its child data sources when ready is resolved. To make sure all child data sources are created, please use childDataSourcesReady .

isDataView
inherited
boolean

True means the data source is a data view. For local data source, this is false even the local data source is created from a data view.

isInAppConfig
inherited
() => boolean

Return whether the data source is added in builder and is saved in app config.

isLocal
inherited
boolean

True means the data source is a local data source.

boolean

Whether the data source is case-sensitive when doing query by SQL clauses.

FeatureLayer

The ArcGIS Maps SDK for JavaScript FeatureLayer object.

loadById
inherited
(idstring, refresh?boolean) => Promise<DataRecord>

Load record by ID, do not consider other queries.

localId
inherited
string

The local ID of the data source.

order
inherited
number

Order in the parent data source.

The parent data source of this data source, mull means it's a root data source.

queryAll
inherited
(queryQueryParams, signal?AbortSignal, progressCallback?QueryProgressCallback, options?QueryOptions) => Promise<QueryResult>

Query all records, there is no limit to the number of the records returned in the records array response. You can abort the progress by a abort signal and can use progressCallback to get the progress and the current results.

queryById
inherited
(idstring, fields?string[]) => Promise<DataRecord>

Query record by ID. Will return all fields if not pass in the fields .

queryIds
inherited
(queryQueryParams, options?QueryOptions) => Promise<QueryResult>

Query record IDs, there is no limit to the number of the IDs returned in the ids array response.

ready
inherited
() => Promise<any>

Ready is resolved means the data source instance is ready for use. Please note that can not make sure all child data sources are created if a set data source is ready. To make sure all child data sources are created, please use childDataSourcesReady .

The Feature Layer JSON object.

(statusDataSourceStatus) => void

Update data source count status.

(dsJsonIMDataSourceJson) => void

Update data source JSON in data source instance

(listenboolean) => void

Whether listen selected records from other data sources which are derived from the same main data source. If true, will update selected record IDs of current data source info when selecting records via other derived data sources. Will also update selected record IDs when selecting records via current data source itself. If false, won't change selected record IDs when selecting records via other derived data sources. Will update selected record IDs only when selecting records via current data source itself.

setRecords
inherited
(recordsDataRecord[]) => void

Update the records in the data source object only, does not update the source data.

setStatus
inherited
(statusDataSourceStatus) => void

Update data source status.

(queryQueryParams, widgetIdstring) => void

Update the data source query without executing the actual query.

(optionsSelectOptions, triggerDataSourceDataSource, forceCheck?boolean) => void

Update selected records in data source info if the current data source listens selection change (see setListenSelection ) or the current data source is the trigger data source (that is to say, select via it).

addSourceVersion

inherited
Interface Property
addSourceVersion: () => void

When current data source is created from an array of records, it will be saved in sourceRecords . Add the version of sourceRecords .setSourceRecords will add the version by default.

Type declaration
    function(): void
    Returns 
    void
Inherited from ArcGISQueriableDataSource.addSourceVersion

addVersion

optionalinherited
Interface Property
addVersion: () => void

Update data source version.

Type declaration
    function(): void
    Returns 
    void
Inherited from ArcGISQueriableDataSource.addVersion

areChildDataSourcesCreated

optionalinherited
Interface Property
areChildDataSourcesCreated: () => boolean

Return whether all child data sources (including descendant data sources) are created. Data source has this method only if it is data source set ( dataSource.isDataSourceSet is true).

Type declaration
    function(): boolean
    Returns 
    boolean
Inherited from ArcGISQueriableDataSource.areChildDataSourcesCreated

belongToDataSource

optionalinherited
Interface Property
belongToDataSource: DataSource

The data source which this data source derives from.

Inherited from ArcGISQueriableDataSource.belongToDataSource

childDataSourcesReady

optionalinherited
Interface Property
childDataSourcesReady: () => Promise<DataSource[]>

All child data sources (including descendant data sources) are ready for use. Data source has this method only if it is data source set ( dataSource.isDataSourceSet is true).

Type declaration
Inherited from ArcGISQueriableDataSource.childDataSourcesReady

clearRecords

optionalinherited
Interface Property
clearRecords: () => void

This function will clear the loaded records and won't clear the sourceRecords. Once the loaded records are cleared, the version in the data source info will be updated.

Type declaration
    function(): void
    Returns 
    void
Inherited from ArcGISQueriableDataSource.clearRecords

clearSourceRecords

inherited
Interface Property
clearSourceRecords: () => void

Clear both sourceRecords and loaded records. Both source version and version in data source info will be updated.

Type declaration
    function(): void
    Returns 
    void
Inherited from ArcGISQueriableDataSource.clearSourceRecords

count

optionalinherited
Interface Property
count: number

The total records count depends on the current query

Inherited from ArcGISQueriableDataSource.count

createDataSourceById

optionalinherited
Interface Property
createDataSourceById: (dataSourceIdstring) => Promise<DataSource>

Create a child or a descendant data source by id. Data source has this method only if it is data source set ( dataSource.isDataSourceSet is true).

Please note will only create the specific data source, won't create descendant data sources of it.

Type declaration
    function(dataSourceIdstring): Promise<DataSource>
    Parameters
    ParameterType
    dataSourceId
    string
    Returns 
    Promise<DataSource>
Inherited from ArcGISQueriableDataSource.createDataSourceById

createJSAPILayerByDataSource

inherited
Interface Property
createJSAPILayerByDataSource: (dataSource?DataSource, useDataSourceQueryParams?boolean, throwError?boolean) => Promise<Layer>

Default dataSource is the current data source. Default useDataSourceQueryParams is true, that is to say apply the data source's query params to the created ArcGIS Maps SDK for JavaScript layer by default. Default throwError is false, that is to say the method won't throw error and will return undefined if the creation fail.

Type declaration
    function(dataSource?DataSource, useDataSourceQueryParams?boolean, throwError?boolean): Promise<Layer>
    Parameters
    ParameterType
    dataSource
    DataSource
    useDataSourceQueryParams
    boolean
    throwError
    boolean
    Returns 
    Promise<Layer>
Inherited from ArcGISQueriableDataSource.createJSAPILayerByDataSource

dataSourceManager

inherited
Interface Property
dataSourceManager: DataSourceManager

The data source manager, which is used to manage the data source, including create/get/destroy the data source instance.

Inherited from ArcGISQueriableDataSource.dataSourceManager

dataViewId

optionalinherited
Interface Property
dataViewId: string

The data view ID configured in JSON.

Inherited from ArcGISQueriableDataSource.dataViewId

destroy

inherited
Interface Property
destroy: () => void

Destroy the data source.

Type declaration
    function(): void
    Returns 
    void
Inherited from ArcGISQueriableDataSource.destroy

getAllChildDataSources

optionalinherited
Interface Property
getAllChildDataSources: () => DataSource[]

Return all child data sources of a parent data source, includes the grandchildren

Type declaration
Inherited from ArcGISQueriableDataSource.getAllChildDataSources

getAllDerivedDataSources

inherited
Interface Property
getAllDerivedDataSources: () => DataSource[]

Return the derived data views and local data sources.

Type declaration
Inherited from ArcGISQueriableDataSource.getAllDerivedDataSources

getAllLoadedRecords

inherited
Interface Property
getAllLoadedRecords: () => DataRecord[]

Get records of all the loaded pages.

Type declaration
Inherited from ArcGISQueriableDataSource.getAllLoadedRecords

getAutoRefreshInterval

inherited
Interface Property
getAutoRefreshInterval: () => number

If the return value > 0, auto refresh is enabled.

Type declaration
    function(): number
    Returns 
    number
Inherited from ArcGISQueriableDataSource.getAutoRefreshInterval

getChildDataSource

optionalinherited
Interface Property
getChildDataSource: (jimuChildIdstring) => DataSource

Get child data source by jimuChildId . You can get jimuChildId by getJimuChildId() .

Type declaration
    function(jimuChildIdstring): DataSource
    Parameters
    ParameterType
    jimuChildId
    string
    Returns 
    DataSource
Inherited from ArcGISQueriableDataSource.getChildDataSource

getChildDataSources

optionalinherited
Interface Property
getChildDataSources: () => DataSource[]

Return child data sources of a parent data source.

Type declaration
Inherited from ArcGISQueriableDataSource.getChildDataSources

getCountStatus

inherited
Interface Property
getCountStatus: () => DataSourceStatus

Return data source count status.

Type declaration
Inherited from ArcGISQueriableDataSource.getCountStatus

getCurrentQueryId

inherited
Interface Property
getCurrentQueryId: () => string

Get the current loaded record id, which is used in loadById method.

Type declaration
    function(): string
    Returns 
    string
Inherited from ArcGISQueriableDataSource.getCurrentQueryId

getDataSourceJson

inherited
Interface Property
getDataSourceJson: () => IMDataSourceJson

The data source JSON object in app config.

Type declaration
    function(): IMDataSourceJson
    Returns 
    IMDataSourceJson
Inherited from ArcGISQueriableDataSource.getDataSourceJson

getDataViewConfig

inherited
Interface Property
getDataViewConfig: () => IMDataViewJson

Return the config of the current data source.

Type declaration
    function(): IMDataViewJson
    Returns 
    IMDataViewJson
Inherited from ArcGISQueriableDataSource.getDataViewConfig

getInfo

inherited
Interface Property
getInfo: () => IMDataSourceInfo

Return the data source info in redux store.

Type declaration
    function(): IMDataSourceInfo
    Returns 
    IMDataSourceInfo
Inherited from ArcGISQueriableDataSource.getInfo

getLabel

inherited
Interface Property
getLabel: () => string

Return data source label.

Type declaration
    function(): string
    Returns 
    string
Inherited from ArcGISQueriableDataSource.getLabel

getListenSelection

inherited
Interface Property
getListenSelection: () => boolean

Return whether listen selection.

Type declaration
    function(): boolean
    Returns 
    boolean
Inherited from ArcGISQueriableDataSource.getListenSelection

getLocalDataSource

inherited
Interface Property
getLocalDataSource: (localIdstring) => DataSource

Get local data source by local ID.

Type declaration
Inherited from ArcGISQueriableDataSource.getLocalDataSource

getLocalDataSources

inherited
Interface Property
getLocalDataSources: () => DataSource[]

Return all local data sources created from a main data source or data view.

Type declaration
Inherited from ArcGISQueriableDataSource.getLocalDataSources

getMaxRecordCount

inherited
Interface Property
getMaxRecordCount: () => number

Null means there is no record count limit, and will return all records from the service.

Type declaration
    function(): number
    Returns 
    number
Inherited from ArcGISQueriableDataSource.getMaxRecordCount

getRealQueryPages

inherited
Interface Property
getRealQueryPages: (pageSizenumber, pagenumber) => number[]

Get real query page depends on the widget's request page.

Type declaration
    function(pageSizenumber, pagenumber): number[]
    Parameters
    ParameterType
    pageSize
    number
    page
    number
    Returns 
    number[]
Inherited from ArcGISQueriableDataSource.getRealQueryPages

getRecord

inherited
Interface Property
getRecord: (indexnumber) => DataRecord

Get record by index

Type declaration
Inherited from ArcGISQueriableDataSource.getRecord

getRecordById

inherited
Interface Property
getRecordById: (idstring) => DataRecord

Get record by ID

Type declaration
Inherited from ArcGISQueriableDataSource.getRecordById

getRecords

inherited
Interface Property
getRecords: () => DataRecord[]

Get records of the loaded continuous pages. If the loaded pages are 1, 2, and 10, will only return records on the page 1 and 2.

Widgets can use different page sizes to query the data source, but the data source has a specific page size to query the service. The data source will save the loaded records by its own page size and split them when widgets doing queries (with different page and page sizes). The method returns continuous page records to make sure the order of the records is correct.

Type declaration
Inherited from ArcGISQueriableDataSource.getRecords

getRecordsByPage

inherited
Interface Property
getRecordsByPage: (pagenumber, pageSizenumber) => DataRecord[]

The page size here defines the records this method returns, which are not the actual query pageSize. Will use a fixed pageSize to query and cache data.

Type declaration
    function(pagenumber, pageSizenumber): DataRecord[]
    Parameters
    ParameterType
    page
    number
    pageSize
    number
    Returns 
    DataRecord[]
Inherited from ArcGISQueriableDataSource.getRecordsByPage

getRecordsByPageWithSelection

inherited
Interface Property
getRecordsByPageWithSelection: (pagenumber, pageSizenumber) => DataRecord[]

If selected records are not loaded in the current data source, will concat them to the end of records array. See getRecordsWithSelection for details.

Type declaration
    function(pagenumber, pageSizenumber): DataRecord[]
    Parameters
    ParameterType
    page
    number
    pageSize
    number
    Returns 
    DataRecord[]
Inherited from ArcGISQueriableDataSource.getRecordsByPageWithSelection

getRecordsWithSelection

inherited
Interface Property
getRecordsWithSelection: () => DataRecord[]

If selected records are not loaded in the current data source, they will be concatenated to the end of records array. For example, record 1 is selected in data view 1 and it is not loaded in data view 2 (record 1 actually matches query params of data view 2), dataView2.getRecordsWithSelection() will return all loaded records in data view 2 and record 1.

Type declaration
Inherited from ArcGISQueriableDataSource.getRecordsWithSelection

getRemoteQueryParams

inherited
Interface Property
getRemoteQueryParams: () => QueryParams

Get the query parameters configured in remote (not in exb).

Type declaration
Inherited from ArcGISQueriableDataSource.getRemoteQueryParams

getRootDataSource

inherited
Interface Property
getRootDataSource: () => DataSource

Return the root data source.

Type declaration
Inherited from ArcGISQueriableDataSource.getRootDataSource

getRuntimeQueryParams

inherited
Interface Property
getRuntimeQueryParams: (excludeWidgetId?string) => QueryParams

Get the queries applied in runtime. If the excludeWidgetId is passed in, the queries of this widget will be excluded.

Type declaration
    function(excludeWidgetId?string): QueryParams
    Parameters
    ParameterType
    excludeWidgetId
    string
    Returns 
    QueryParams
Inherited from ArcGISQueriableDataSource.getRuntimeQueryParams

getSchema

inherited
Interface Property
getSchema: () => IMDataSourceSchema

The schema returned here is the merged result of the configured schema and the fetched schema. The configured schema is the user's changes, such as a new data source name. The fetched schema is the original schema from AGOL/portal item or a remote database, such as the service name, the fields and the filters.

Type declaration
Inherited from ArcGISQueriableDataSource.getSchema

getSelectedRecordIds

inherited
Interface Property
getSelectedRecordIds: () => string[]

Get selected record IDs

Type declaration
    function(): string[]
    Returns 
    string[]
Inherited from ArcGISQueriableDataSource.getSelectedRecordIds

getSelectedRecordIndexes

inherited
Interface Property
getSelectedRecordIndexes: () => number[]

Get selected record indexes

Type declaration
    function(): number[]
    Returns 
    number[]
Inherited from ArcGISQueriableDataSource.getSelectedRecordIndexes

getSelectedRecords

inherited
Interface Property
getSelectedRecords: () => DataRecord[]

Get selected records

Type declaration
Inherited from ArcGISQueriableDataSource.getSelectedRecords

getSourceVersion

inherited
Interface Property
getSourceVersion: () => number

When current data source is created from an array of records, it will be saved in sourceRecords . Return the version of sourceRecords .

Type declaration
    function(): number
    Returns 
    number
Inherited from ArcGISQueriableDataSource.getSourceVersion

getStatus

inherited
Interface Property
getStatus: () => DataSourceStatus

Return data source status.

Type declaration
Inherited from ArcGISQueriableDataSource.getStatus

getVersion

inherited
Interface Property
getVersion: () => number

Return data source version.

Type declaration
    function(): number
    Returns 
    number
Inherited from ArcGISQueriableDataSource.getVersion

id

inherited
Interface Property
id: string

The data source ID.

Inherited from ArcGISQueriableDataSource.id

isDataSourceSet

inherited
Interface Property
isDataSourceSet: boolean

Whether a data source contains child data sources. A set data source won't create all its child data sources when ready is resolved. To make sure all child data sources are created, please use childDataSourcesReady .

Inherited from ArcGISQueriableDataSource.isDataSourceSet

isDataView

inherited
Interface Property
isDataView: boolean

True means the data source is a data view. For local data source, this is false even the local data source is created from a data view.

Inherited from ArcGISQueriableDataSource.isDataView

isInAppConfig

inherited
Interface Property
isInAppConfig: () => boolean

Return whether the data source is added in builder and is saved in app config.

Type declaration
    function(): boolean
    Returns 
    boolean
Inherited from ArcGISQueriableDataSource.isInAppConfig

isLocal

inherited
Interface Property
isLocal: boolean

True means the data source is a local data source.

Inherited from ArcGISQueriableDataSource.isLocal

isSqlCaseSensitive

inherited
Interface Property
isSqlCaseSensitive: boolean

Whether the data source is case-sensitive when doing query by SQL clauses.

Inherited from ArcGISQueriableDataSource.isSqlCaseSensitive

layer

optional
Interface Property
layer: FeatureLayer

The ArcGIS Maps SDK for JavaScript FeatureLayer object.

loadById

inherited
Interface Property
loadById: (idstring, refresh?boolean) => Promise<DataRecord>

Load record by ID, do not consider other queries.

Type declaration
    function(idstring, refresh?boolean): Promise<DataRecord>
    Parameters
    ParameterType
    id
    string
    refresh
    boolean
    Returns 
    Promise<DataRecord>
Inherited from ArcGISQueriableDataSource.loadById

localId

optionalinherited
Interface Property
localId: string

The local ID of the data source.

Inherited from ArcGISQueriableDataSource.localId

order

optionalinherited
Interface Property
order: number

Order in the parent data source.

Inherited from ArcGISQueriableDataSource.order

parentDataSource

inherited
Interface Property
parentDataSource: DataSource

The parent data source of this data source, mull means it's a root data source.

Inherited from ArcGISQueriableDataSource.parentDataSource

queryAll

inherited
Interface Property
queryAll: (queryQueryParams, signal?AbortSignal, progressCallback?QueryProgressCallback, options?QueryOptions) => Promise<QueryResult>

Query all records, there is no limit to the number of the records returned in the records array response. You can abort the progress by a abort signal and can use progressCallback to get the progress and the current results.

Type declaration
Inherited from ArcGISQueriableDataSource.queryAll

queryById

inherited
Interface Property
queryById: (idstring, fields?string[]) => Promise<DataRecord>

Query record by ID. Will return all fields if not pass in the fields .

Type declaration
    function(idstring, fields?string[]): Promise<DataRecord>
    Parameters
    ParameterType
    id
    string
    fields
    string[]
    Returns 
    Promise<DataRecord>
Inherited from ArcGISQueriableDataSource.queryById

queryIds

inherited
Interface Property
queryIds: (queryQueryParams, options?QueryOptions) => Promise<QueryResult>

Query record IDs, there is no limit to the number of the IDs returned in the ids array response.

Type declaration
Inherited from ArcGISQueriableDataSource.queryIds

ready

inherited
Interface Property
ready: () => Promise<any>

Ready is resolved means the data source instance is ready for use. Please note that can not make sure all child data sources are created if a set data source is ready. To make sure all child data sources are created, please use childDataSourcesReady .

Type declaration
    function(): Promise<any>
    Returns 
    Promise<any>
Inherited from ArcGISQueriableDataSource.ready

restLayer

optional
Interface Property
restLayer: IFeatureLayer

The Feature Layer JSON object.

setCountStatus

optionalinherited
Interface Property
setCountStatus: (statusDataSourceStatus) => void

Update data source count status.

Type declaration
Inherited from ArcGISQueriableDataSource.setCountStatus

setDataSourceJson

inherited
Interface Property
setDataSourceJson: (dsJsonIMDataSourceJson) => void

Update data source JSON in data source instance

Type declaration
    function(dsJsonIMDataSourceJson): void
    Parameters
    ParameterType
    dsJson
    IMDataSourceJson
    Returns 
    void
Inherited from ArcGISQueriableDataSource.setDataSourceJson

setListenSelection

inherited
Interface Property
setListenSelection: (listenboolean) => void

Whether listen selected records from other data sources which are derived from the same main data source. If true, will update selected record IDs of current data source info when selecting records via other derived data sources. Will also update selected record IDs when selecting records via current data source itself. If false, won't change selected record IDs when selecting records via other derived data sources. Will update selected record IDs only when selecting records via current data source itself.

Main data source and its data views will listen selected records by default, local data source does not listen selected records by default.

Type declaration
    function(listenboolean): void
    Parameters
    ParameterType
    listen
    boolean
    Returns 
    void
Inherited from ArcGISQueriableDataSource.setListenSelection

setRecords

inherited
Interface Property
setRecords: (recordsDataRecord[]) => void

Update the records in the data source object only, does not update the source data.

Type declaration
Inherited from ArcGISQueriableDataSource.setRecords

setStatus

optionalinherited
Interface Property
setStatus: (statusDataSourceStatus) => void

Update data source status.

Type declaration
Inherited from ArcGISQueriableDataSource.setStatus

updateQueryParams

inherited
Interface Property
updateQueryParams: (queryQueryParams, widgetIdstring) => void

Update the data source query without executing the actual query.

Type declaration
    function(queryQueryParams, widgetIdstring): void
    Parameters
    ParameterType
    query
    QueryParams
    widgetId
    string
    Returns 
    void
Inherited from ArcGISQueriableDataSource.updateQueryParams

updateSelectionInfo

inherited
Interface Property
updateSelectionInfo: (optionsSelectOptions, triggerDataSourceDataSource, forceCheck?boolean) => void

Update selected records in data source info if the current data source listens selection change (see setListenSelection ) or the current data source is the trigger data source (that is to say, select via it).

Before update info, will check whether these selected records match filters of the current data source firstly, and then only set the matched selected records to info. Will skip the check in some cases to improve performance if the forceCheck is not passed in or is false. For example, if the curren data source is main data source (we suppose that main data source contains all records, no need to check). But if the forceCheck is true, won't skip the check.

Type declaration
Inherited from ArcGISQueriableDataSource.updateSelectionInfo

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.