laptop and a wrench

Bug

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

Last Published: August 25, 2014 No Product Found
Bug ID Number NIM038146
SubmittedSeptember 3, 2008
Last ModifiedApril 28, 2025
Applies toNo Product Found
Version found9.3
StatusKnown Limit

Additional Information

No Public Explanation

Workaround

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); }

Steps to Reproduce

Bug ID: NIM038146

Software:

  • No Product Found

Get notified when the status of a bug changes

Download the Esri Support App

Discover more on this topic

Get help from ArcGIS experts

Contact technical support

Download the Esri Support App

Go to download options