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

RadComboBox

1 Answer 64 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
RENJ
Top achievements
Rank 1
RENJ asked on 11 Aug 2011, 07:22 PM
Hello all,

Can I keep the RadCombo Open even after selecting an item.Any help is appreciated.

Thanks
Renj

1 Answer, 1 is accepted

Sort by
0
Thad
Top achievements
Rank 2
answered on 11 Aug 2011, 09:42 PM
Renj,

You certainly can by attaching this JavaScript to your RadComboBox.  Of course it means that the RadComboBox will never close until the page posts back, which is probably not what you want...

function OnClientDropDownClosing(sender, eventArgs) {
    eventArgs.set_cancel(true);
}

See more on this page:
http://www.telerik.com/help/aspnet-ajax/combobox-onclientdropdownclosing.html

Thad
Tags
ComboBox
Asked by
RENJ
Top achievements
Rank 1
Answers by
Thad
Top achievements
Rank 2
Share this question
or