This is a migrated thread and some comments may be shown as answers.

[Solved] small height for all combo and dropdownlist

1 Answer 25 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Diego
Top achievements
Rank 1
Diego asked on 12 Dec 2010, 10:53 PM
Hi all,

suddenly I got all combobox and dropdownlist slide windows reduced to 40 pixel from 200px
I tried to understand what stylesheet has changed in last day but I did not find any difference.
All views in the MVC project got this behavior.

I wonder which is the exact htmlattribute to enlarge the combo selection list
I tried 
Html.Telerik().DropDownList() _
                                    .Name("FT_ASL") _
                                    .SelectedIndex(l_ASLIndex) _
                                    .HtmlAttributes(New With {.style = "width:180px;"}) _
                                    .BindTo(New SelectList(Model.m_ASL_List.ToList(), _
                                                            "SelectValue", "SelectList"))%>
Html.Telerik().DropDownList() _
                                    .Name("FT_ASL") _
                                    .SelectedIndex(l_ASLIndex) _
                                    .HtmlAttributes(New With {.style = "width:180px;"}) _
                                    .BindTo(New SelectList(Model.m_ASL_List.ToList(), _
                                                            "SelectValue", "SelectList"))%>
Html.Telerik().DropDownList() _
                                    .Name("FT_ASL") _
                                    .SelectedIndex(l_ASLIndex) _
                                    .HtmlAttributes(New With {.style = "width:180px;"}) _
                                    .BindTo(New SelectList(Model.m_ASL_List.ToList(), _
                                                            "SelectValue", "SelectList"))%>
Html.Telerik().DropDownList() _
    .Name("FT_th") _
        .SelectedIndex(l_thIndex) _
        .HtmlAttributes(New With {.style = "width:180px;height:200px"}) _
        .BindTo(New SelectList(Model.m_th_List.ToList(), _
                          "SelectValue", "SelectList"))%>

... but this make the control bigger not the selection list !!!!!

Thankx in advance
Diego

1 Answer, 1 is accepted

Sort by
0
Diego
Top achievements
Rank 1
answered on 13 Dec 2010, 05:09 PM
OK, solved.

I restored a backup from all scripts content css directories
and after I merged back with Model Views Controllers source files.

In any case i suspect that some file was changed inside visual studio project.
Tags
ComboBox
Asked by
Diego
Top achievements
Rank 1
Answers by
Diego
Top achievements
Rank 1
Share this question
or