Hello,
I am using a RadDropdownList but for some reason I cannot get the dataset's table to bind to the Raddropdownlist. However when I use a standard windows combobox the data binds ok.
//This doesn't work with the RadDropdownList..."Lookup" is the name of the datatable within the dataset.
DataSet ds = oLkp.GetLookupValues("matterTypeId, matterType", "tblMatterTypes", "matterType");
this.cmbMatterType.DisplayMember = "Lookup.matterType";
this.cmbMatterType.ValueMember = "Lookup.matterType";
this.cmbMatterType.DataSource = ds;
//Same code using a standard winform combobox, this works fine.
this.comboBox1.DisplayMember = "Lookup.matterType";
this.comboBox1.ValueMember = "Lookup.matterTypeId";
this.comboBox1.DataSource = ds;
Is there an extra step to using these new controls or a design time property that must be set....I know this control replaces the RadCombobox. Using 2011.3.11.1116
Thanks,
Kerry
I am using a RadDropdownList but for some reason I cannot get the dataset's table to bind to the Raddropdownlist. However when I use a standard windows combobox the data binds ok.
//This doesn't work with the RadDropdownList..."Lookup" is the name of the datatable within the dataset.
DataSet ds = oLkp.GetLookupValues("matterTypeId, matterType", "tblMatterTypes", "matterType");
this.cmbMatterType.DisplayMember = "Lookup.matterType";
this.cmbMatterType.ValueMember = "Lookup.matterType";
this.cmbMatterType.DataSource = ds;
//Same code using a standard winform combobox, this works fine.
this.comboBox1.DisplayMember = "Lookup.matterType";
this.comboBox1.ValueMember = "Lookup.matterTypeId";
this.comboBox1.DataSource = ds;
Is there an extra step to using these new controls or a design time property that must be set....I know this control replaces the RadCombobox. Using 2011.3.11.1116
Thanks,
Kerry