Hi!
Looks like a problem with new version of Telerik library. Following code:
results in broken layout of column header after second button click. I think I can come up with workarounds but this seems to be a bug anyway. I have a repro solution ready if needed.
WBR,
Nikolay Ryabkov.
Looks like a problem with new version of Telerik library. Following code:
GridViewColumn[] columns =
new
[]
{
new
GridViewDataColumn()
{Header =
"Test header"
}
};
private
void
Button_Click(
object
sender, RoutedEventArgs e)
{
Grid.Columns.Clear();
Grid.Columns.AddRange(columns);
}
results in broken layout of column header after second button click. I think I can come up with workarounds but this seems to be a bug anyway. I have a repro solution ready if needed.
WBR,
Nikolay Ryabkov.