Dear sir,
I have a GridView in a RadWindow. If I change the size of the Window, the vertical grid lines disappears sometimes. It happens only in GridViews with columns, which fill the whole grid (Width=*)
<Controls:CldbGridView
HorizontalAlignment="Stretch"
VerticalAlignment="Top"
ItemsSource="{Binding VertragsphaseParameterElements}"
CanUserDeleteRows="False"
CanUserInsertRows="False"
CanUserSortColumns="True"
ShowGroupPanel="True"
AutoGenerateColumns="False"
SelectedItem="{Binding SelectedElement, Mode=TwoWay}"
Background="{StaticResource CldbGridView_CellBackground_ReadOnly}">
<Controls1:RadGridView.Columns>
<Controls1:GridViewDataColumn DataMemberBinding="{Binding Phase}" Header="Phase"
IsReadOnly="True" Background="{StaticResource CldbGridView_CellBackground_ReadOnly}" Width="2*"/>
<Controls1:GridViewDataColumn DataMemberBinding="{Binding Aktuell}" Header="Aktuell"
IsReadOnly="True" Background="{StaticResource CldbGridView_CellBackground_ReadOnly}" Width="2*"/>
<Controls1:GridViewDataColumn DataMemberBinding="{Binding Geaendert}" Header="geƤndert"
IsReadOnly="True" Background="{StaticResource CldbGridView_CellBackground_ReadOnly}" Width="3*"/>
</Controls1:RadGridView.Columns>
</Controls:CldbGridView>
Is it possible to repair this behavior?
Best Regards