or
public string SelectedCountry{get { return this.cmbCountry.SelectedValue; }}protected void Af_FilterButtonClicked(object sender, EventArgs args){ jobFilter.SelectedCountry.Where() //jobFilter is my custom control }protected void rcMenu_ItemClick(object sender, RadMenuEventArgs e) { switch (e.Item.Value) { case "Insert": url = "~/Admin/ManageItemsDialog.aspx?ID=" break; case "Edit": url = "~/Admin/ManageItemsDialog.aspx?ID=" break; } }<telerik:GridBoundColumn DataField="NavigateTarget" HeaderText="Navigate Target" UniqueName="NavigateTarget" DataType="System.String" ColumnEditorID="Editor_NavigateTarget" /> <telerik:GridCheckboxColumn DataField="Enabled" HeaderText="Enabled" UniqueName="Enabled" DataType="System.Boolean" ColumnEditorID="Editor_Enabled" /> Hello Folks,
I do know that the AutoCompleteBox has been designed to display its DropDown upon a user entry and not before. But this behavior does eventually create a little confusion when the user has no idea what the possibilities are. Therefore I would like to achieve the following functionality:
I am aware that the RadComboBox with the LoadOnDemand event could come close to the solution,... but close isn't enough. I would really like to use the AutoCompleteBox. Any idea how to achieve this ?
Thanks