Hello,
Im experiencing an issue where I have an RadAutoCompleteBox on a RadDock and it functions properly when the RadDock remains in the default position,
However, when I move the raddock out of the raddockzone it is in, the RadAutoCompleteBox acts as if there are no results, despite having results when I step through the code that fills its datasource.
below is the snippet of code that fills the AutoCompleteBox Datasource
protected void ddlDeviceType_ItemSelected(object sender, Telerik.Web.UI.DropDownListEventArgs e)
{
type = ddlDeviceType.SelectedText;
cboDeviceAssign.Entries.Clear();
cboDeviceAssign.DataSource = Devices;
cboDeviceAssign.DataTextField = "Device";
cboDeviceAssign.DataValueField = "Device";
cboDeviceAssign.DataBind();
}
Im experiencing an issue where I have an RadAutoCompleteBox on a RadDock and it functions properly when the RadDock remains in the default position,
However, when I move the raddock out of the raddockzone it is in, the RadAutoCompleteBox acts as if there are no results, despite having results when I step through the code that fills its datasource.
below is the snippet of code that fills the AutoCompleteBox Datasource
protected void ddlDeviceType_ItemSelected(object sender, Telerik.Web.UI.DropDownListEventArgs e)
{
type = ddlDeviceType.SelectedText;
cboDeviceAssign.Entries.Clear();
cboDeviceAssign.DataSource = Devices;
cboDeviceAssign.DataTextField = "Device";
cboDeviceAssign.DataValueField = "Device";
cboDeviceAssign.DataBind();
}