Lets say that I have the two following classes
public class OtherClass
{
public string OtherName{ get; set; }
}
public class MyClass
{
public string TheName { get; set; }
public int TheAge { get; set; }
}
lets say that I bound the XtraGrid
to the Object
datasource (MyClass
)
Now, My scenario is that I want to populate the first column (TheName
) when I click the Editor button
with OtherName
values came from list of OtherClass
object (List<OtherClass>
)
then finally transfer the whole Row back to MyClass
object
is that possible?