Auto Resize Dropdown Box | CodeGuru

Auto Resize Dropdown Box

Auto Resize Dropdown Sometimes, using a built-in dropdown control does not meet your requirement. Suppose a dropdown box contains text that is longer in length than your box; therefore, the width of the dropdown will increase as the text length increases. But, an increase in the dropdown’s size affects your form design. You don’t have […]

Written By
CodeGuru Staff
CodeGuru Staff
May 14, 2007
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Auto Resize Dropdown

Sometimes, using a built-in dropdown control does not meet your requirement. Suppose a dropdown box contains text that is longer in length than your box; therefore, the width of the dropdown will increase as the text length increases. But, an increase in the dropdown’s size affects your form design. You don’t have enough space on your page to fit this lengthy dropdown box. In that case, you can use this Auto Resize Dropdown box.

Create a blank solution; in the solution, add a class library; and in the class file, add the following code. This code shows that, at the time of rendering the control, with the help of a style you can maintain the initial width of your dropdown box.

Note: You must inherit WebControls.DropDownList.

Inherits WebControls.DropDownList
   Protected Overrides Sub Render(ByVal writer As _
      System.Web.UI.HtmlTextWriter)
      writer.Write("<div style='width:" & Me.Width.ToString & "'>")
      MyBase.Render(writer)
      writer.WriteEndTag("div")
End Sub

At the time of initialization, it will call JavaScript functions. These JavaScript functions will attach with onactivate and ondeactivate events.

Private Sub AutoSizeDropDown_Init(ByVal sender As Object, _
   ByVal e As System.EventArgs) Handles Me.Init
   Dim ControlsJS As String
   ControlsJS = "<script type=""text/javascript"" src=""" &
   HttpRuntime.AppDomainAppVirtualPath & "/js/CustomControls.js""> _
   </script>"
   Me.Attributes.Add("originalWidth", "")
   Me.Attributes.Add("onactivate", "RearrangeDdnWidth(this)")
   Me.Attributes.Add("ondeactivate", "ResetDdnWidth(this)")
   Page.ClientScript.RegisterClientScriptBlock(Me.GetType(), _
      "ControlsJS", ControlsJS)
End Sub

After building the solution, add a new web site in your solution. In the default.aspx page, register your DLL with the page.

<%@ Register Assembly="AutoDropDown"
    Namespace="AutoDropDown" TagPrefix="cc1" %>

After that, you can add the dropdown:

<cc1:AutoSizeDropDown runat="server"
                      ID="AutoSizeDropDown1"
                      Width="50px"></cc1:AutoSizeDropDown>

The complete source code is available with this article.

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.