Hello everybody,
we are using RadControls for WinForms Q3 2009 SP1 and want to change the items of a ComboboxColumns editor by the value of the cell of another column.
For this in GridView.CellBeginEdit we set the editors element to the filtered datasource and expected the Comboxbox just to show the items of the filtered datasource BUT it shows all items of the original unfiltered datasource.
RadComboBoxEditor editor = m_gridView.ActiveEditor as RadComboBoxEditor;
if (null != editor)
{
((RadComboBoxElement)(editor.EditorElement)).DataSource = filteredDataSource;
}
Did we make a mistake or is it just a bug???
Greetings from Berlin, Germany
Daniel