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 支持应用程序

发现关于本主题的更多内容

获取来自 ArcGIS 专家的帮助

联系技术支持部门

下载 Esri 支持应用程序

转至下载选项