Hi,
I'm using the RadCombox ItemsRequested to perform partial search....this feature works fine. However, during the update, the RadCombobox.text is already prepopulated. This causes the dropdown to be blank (view the error.jpg). Is there anyway to specify that once the user clicks on the RadCombox dropdown, the selected value disappears and the full dropdown list appears?
I'm using the RadCombox ItemsRequested to perform partial search....this feature works fine. However, during the update, the RadCombobox.text is already prepopulated. This causes the dropdown to be blank (view the error.jpg). Is there anyway to specify that once the user clicks on the RadCombox dropdown, the selected value disappears and the full dropdown list appears?
//Populate the Area dropdown
protected void RadComboBoxArea_ItemsRequested(object sender, RadComboBoxItemsRequestedEventArgs e)
{
RadComboBox comboBox = (RadComboBox)sender;
// Clear the default Item that has been re-created from ViewState at this point.
comboBox.Items.Clear();
BindingList<LookupArea> Area = WellVentDataLayer.GetAreas(e.Text);
foreach (LookupArea i in Area)
{
comboBox.Items.Add(
new RadComboBoxItem(i._AreaName.ToString(), i._ID.ToString()));
}
comboBox.DataBind();
}