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

click in multi-column combo

1 Answer 37 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Thierry Treunet
Top achievements
Rank 1
Thierry Treunet asked on 10 Nov 2008, 03:58 PM
Hello,

I want to simulate a click in my multi column combo when ma page is loaded.

Someone have an idea?

thank you

1 Answer, 1 is accepted

Sort by
0
Yana
Telerik team
answered on 11 Nov 2008, 02:42 PM
Hi Thierry,

You can stimulate a click by calling the client-side select() method of RadComboBox item like this:

var combo = $find("<%=RadComboBox1.ClientID %>");  
var itemToClick = combo.findItemByValue(value);   
itemToClick.select(); 

All the best,
Yana
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
ComboBox
Asked by
Thierry Treunet
Top achievements
Rank 1
Answers by
Yana
Telerik team
Share this question
or