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

how to set listbox width and height with script

2 Answers 742 Views
ListBox
This is a migrated thread and some comments may be shown as answers.
lin
Top achievements
Rank 1
lin asked on 04 Dec 2009, 08:13 AM
Because width with '%' is not support on ie6, so I want to set width of listbox on client, but It seem to listbox has no method to set width.

2 Answers, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 04 Dec 2009, 09:11 AM
Hello Lin,

I tried following code in order to set the height and width from client side. Give a try with this.

javascript:
 
<script type="text/javascript"
    function setWidthHeight() { 
        var listBox = $find("RadListBox1"); 
        listBox.get_element().style.width = "400px"
        listBox.get_element().style.height = "400px"
        listBox._groupElement.style.width = "400px"
        listBox._groupElement.style.height = "400px"
    } 
</script> 

Thanks,
Princy.
0
lin
Top achievements
Rank 1
answered on 04 Dec 2009, 09:45 AM
It work, thank you
Tags
ListBox
Asked by
lin
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
lin
Top achievements
Rank 1
Share this question
or