Hi,
I am using GridViewBoundColumnBase.GetValueForItem() to get the content of the cell in my RadGridView.
When I create the columns like the following:
everything works fine.
When I omit the "xy" in new Binding("xy") to bind to the DataItem itself, GetValueForItem(..) returns the bound dataitem instead of the result of the used converter.
This behavior is quite unexpected. When I don't omit the "xy" I get the result of the converter as expected.
Is this a bug or am I doing something wrong?
Best Regards,
Matthias
I am using GridViewBoundColumnBase.GetValueForItem() to get the content of the cell in my RadGridView.
When I create the columns like the following:
new GridViewDataColumn()
{
DataMemberBinding = new Binding("xy")
{
Converter = new XYConverter()
}
}
everything works fine.
When I omit the "xy" in new Binding("xy") to bind to the DataItem itself, GetValueForItem(..) returns the bound dataitem instead of the result of the used converter.
This behavior is quite unexpected. When I don't omit the "xy" I get the result of the converter as expected.
Is this a bug or am I doing something wrong?
Best Regards,
Matthias