vote up 1 vote down star

How can I increase the width of a DropDownList in ASP.NET?

flag

29% accept rate

2 Answers

vote up 0 vote down

I suggest you to use a dynamic width, like this:

<script type="text/javascript">
    function autoWidth()
    {
        var maxlength = 0;
        var mySelect = document.getElementById('Select1');
        for (var i=0; i<mySelect.options.length;i++)
        {
            if (mySelect[i].text.length > maxlength)
            {
                maxlength = mySelect[i].text.length;
            }
        }
        mySelect.style.width = maxlength * 10;
    }
</script>

And use it like this: onclick="autoWidth()"

link|flag
select1 is the dropdown value is it? – Jaison Nov 2 at 13:29
Yes, of course it is. – Nathan Campos Nov 2 at 13:31
Onclick event of dropdown? its says there is no onclick event for dropdown..or its a updatepanel onclick event? – Jaison Nov 2 at 13:36
It's just an example, I use it for other things. – Nathan Campos Nov 2 at 14:37
vote up 1 vote down

You can do this in a .CSS file, inline or with a STYLE tag. You can also do it in the code-behind by setting attributes(DropDownList1.Attribute.Add("style","etc...")).

CSS:

.ChangeWidth
{
    width:400px;    
}

Markup:

<asp:DropDownList ID="DropDownList1" CssClass="ChangeWidth" runat="server">
</asp:DropDownList>
link|flag
i did as you said; there is no change at alll – Jaison Nov 2 at 15:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.