Hi,
I have just download build 2009.2 813 which fixed an issue we were having, however it has broken something else.
If a Grid has no records in its item source and the ColumnsWidthMode is set to FIll I get the following exception:
Message="'-3' is not a valid value for property 'ViewportSize'."
The xaml code for the Grid is:
If I change the ColumnsWidthMode to "None" or "Auto" it works fine.
Regards,
Glen
I have just download build 2009.2 813 which fixed an issue we were having, however it has broken something else.
If a Grid has no records in its item source and the ColumnsWidthMode is set to FIll I get the following exception:
Message="'-3' is not a valid value for property 'ViewportSize'."
The xaml code for the Grid is:
| <telerik:RadGridView x:Name="radGridViewNotes" |
| AutoGenerateColumns="False" |
| ColumnsWidthMode="Fill" |
| Grid.Row="2" |
| IsReadOnly="True" DataLoaded="RadGridViewNotes_DataLoaded" |
| telerik:StyleManager.Theme="Office_Black"> |
| <telerik:RadGridView.Columns> |
| <telerik:GridViewDataColumn Header="Subject" DataMemberPath="Subject" /> |
| <telerik:GridViewDataColumn Header="Creation Date" DataMemberPath="DateAdded" /> |
| </telerik:RadGridView.Columns> |
| </telerik:RadGridView> |
If I change the ColumnsWidthMode to "None" or "Auto" it works fine.
Regards,
Glen