This question is locked. New answers and comments are not allowed.
Hi,
I am migrating an existing silverlight toolkit datagrid to a radgridview.
In the detailsrow in the datagrid I have a combobox which gets populated on the fly to get realtime values.
like this
I am migrating an existing silverlight toolkit datagrid to a radgridview.
In the detailsrow in the datagrid I have a combobox which gets populated on the fly to get realtime values.
like this
private void cmbRelatedMartSerial_Loaded(object sender, RoutedEventArgs e)
{
ComboBox curCombo = (ComboBox)sender;
dataGridRow btnRow =
DataGridRow.GetRowContainingElement(curCombo);
// code to populate the combobox, which depend on btnrow.
How do I convert the line DataGridRow.GetRowContainingElement(curCombo); into a radgridview methode.
Or a work around etc.
Thanks
Ole Rönne