laptop and a wrench

不具合

Actions (flash or zoom) in the category selectors do not work in ArcGIS Dashboards.

最後に公開された状態: January 7, 2022 ArcGIS Dashboards
不具合 ID 番号 BUG-000139012
送信されましたApril 14, 2021
最終更新日June 5, 2024
適用対象ArcGIS Dashboards
見つかったバージョン9.1
オペレーティング システムWindows OS
オペレーティング システムのバージョン10.0
ステータスWill Not Be Addressed

参考情報

Use the following options as alternative configuration options to maintain similar behavior in ArcGIS Dashboards. - Change the selection mode to multiple. - Change the preferred display type to the button bar. - Add a 'none' option. - Use a data expression to combine the two layers into one, and use with a single selector.

対処法

  1. Use ArcGIS Dashboards Classic (through the app launcher or directly via a saved URL or bookmark).
  2. Add a ‘none’ option to each of the selectors.
  3. If the dashboard is saved or a copy created to use the new version, it is possible to use a data expression to combine the two layers together into a single layer as the data source for the selector. The expression is as follow:

var portal = Portal("https://www.arcgis.com/");

var fl1 = FeatureSetByPortalItem(portal,"<layer id>",0,["*"],true)

var fl2 = FeatureSetByPortalItem(portal,"<layer id?",0,["*"],true)

var combinedDict = {

fields: [

{ name: "textField", type: "esriFieldTypeString"},

],

geometryType: "esriGeometryPoint",

features: [],

};

// Loop through each of the three FeatureSets and store attributes into a combined dictionary.

var i = 0;

for (feature in fl1) {

combinedDict.features[i] = {

'geometry':Geometry(feature),

attributes: {

textField: feature["textField"],

}

};

i++;

}

for (feature in fl2) {

combinedDict.features[i] = {

'geometry':Geometry(feature),

attributes: {

textField: feature["textField"]

}

};

i++;

}

// Return dictionary cast as a feature set

return FeatureSet(Text(combinedDict));

再現の手順

不具合 ID: BUG-000139012

ソフトウェア:

  • ArcGIS Dashboards

バグのステータスが変更されたときに通知を受け取る

Esri Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動