Create Features panel in EditorTask needs to allow scrolling when there are a large number of values displayed.
Last Published: August 25, 2014No Product Found
Bug ID Number
NIM038146
Submitted
September 3, 2008
Last Modified
April 28, 2025
Applies to
No Product Found
Version found
9.3
Status
Known Limit
After review by the development team, it has been determined that this issue is related to a known limitation with the software that lies outside of Esri's control. The issue's Additional Information section may contain further explanation.
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); }