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

Focus the Listbox

2 Answers 131 Views
ListBox
This is a migrated thread and some comments may be shown as answers.
Robert
Top achievements
Rank 1
Robert asked on 02 Feb 2010, 05:28 PM
How can I set focus on the listbox on page load.  I have plenty of methods and nothing seems to work.

Is there something I am missing?

2 Answers, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 03 Feb 2010, 06:20 AM
Hello Robert,

I am able to focus to the RadListBox using the following client side code. Add the pageLoad event to your page.

JavaScript:
 
<script type="text/javascript"
    function pageLoad() { 
        var listbox = $find("<%= RadListBox1.ClientID %>"); 
        listbox._getGroupElement().focus(); 
    } 
</script> 

-Shinu.
0
Robert
Top achievements
Rank 1
answered on 03 Feb 2010, 01:58 PM
Excellent Shinu.

Thank you.
Tags
ListBox
Asked by
Robert
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Robert
Top achievements
Rank 1
Share this question
or