當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript ArcGIS FeatureTable selection-change事件用法及代碼示例


基本信息

以下是所在類或對象的基本信息。

AMD: require(["esri/widgets/FeatureTable"], (FeatureTable) => { /* code goes here */ });

ESM: import FeatureTable from "@arcgis/core/widgets/FeatureTable";

類: esri/widgets/FeatureTable

繼承: FeatureTable > Widget > Accessor

自從:用於 JavaScript 4.15 的 ArcGIS API

用法說明

FeatureTable selection-change事件的定義如下:

selection-change


在 FeatureTable 中添加和/或刪除行選擇時觸發。

屬性:

類型說明
added Object[]

包含添加到表選擇中的行(特征)數據的對象數組。

規格:
feature Graphic

添加到特征表選擇的關聯行(特征)。

attachments AttachmentInfo[]

如果適用,與添加到特征表選擇的行(特征)關聯的 AttachmentInfo 數組。

relatedRecords Graphic[]

(目前未實施)。如果適用,與添加到特征表選擇的行(特征)關聯的相關 features 數組。

removed Object[]

包含在表選擇中刪除的行(特征)數據的對象數組。

規格:
feature Graphic

從特征表選擇中刪除的關聯行(特征)。

attachments AttachmentInfo[]

如果適用,與從特征表選擇中刪除的行(特征)關聯的 AttachmentInfo 數組。

relatedRecords Graphic[]

(目前未實施)。如果適用,與從特征表選擇中刪除的行(特征)相關聯的相關 features 數組。

例子:

// This function will fire each time a row (feature) is either added
// or removed from the feature table's selection
featureTable.on("selection-change", (event) => {
  let addedRows = event.added; // An array of features added to the selection
  let removedRows = event.removed;  // An array of features removed from the selection
});

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 FeatureTable selection-change event。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。