laptop and a wrench

不具合

Create Features panel in EditorTask needs to allow scrolling when there are a large number of values displayed.

最後に公開された状態: August 25, 2014 No Product Found
不具合 ID 番号 NIM038146
送信されましたSeptember 3, 2008
最終更新日April 28, 2025
適用対象No Product Found
見つかったバージョン9.3
ステータスKnown Limit

参考情報

No Public Explanation

対処法

Write code for the EditorTask EditorPanelsCreated event (as shown below) that applies a style to the create feature panel that specifies a height. Scrollbars will apear if the content of the panel is larger than the specified height. protected void EditorTask1_EditorPanelsCreated(object sender, ESRI.ArcGIS.ADF.ArcGISServer.Editor.EditorPanelsCreatedEventArgs e) { //get the "create feature" panel from the Editor task (should be the first one) ESRI.ArcGIS.ADF.ArcGISServer.Editor.CreateFeaturePanel pnlCreateFeature = e.EditorPanels[0] as ESRI.ArcGIS.ADF.ArcGISServer.Editor.CreateFeaturePanel; if (pnlCreateFeature == null) { return; } //apply a new style to the control with a specified height (75px). //the scrollbar will automatically appear (overflow:auto) Style stl = new Style(); stl.Height = System.Web.UI.WebControls.Unit.Pixel(75); pnlCreateFeature.ApplyStyle(stl); }

再現の手順

不具合 ID: NIM038146

ソフトウェア:

  • No Product Found

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

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

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

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

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

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

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