Hi there,
If im using 100% the Width of the Grid <telerik:GridViewDataColumn Header="FirstName" Width="*" /> and wrapping with the scroll bar. Why the column goes out of the frame horizontally. but if i takeout the scroll bar everything seems perfect. And I want the scroll bar to be there.
Example:
<ScrollViewer BorderBrush="Transparent" BorderThickness="0" HorizontalScrollBarVisibility="Auto" >
<telerik:RadGridView Grid.Row="1" ScrollMode="Deferred" ShowGroupPanel="False" AutoGenerateColumns="False">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn Header="First Name" Width="200" />
<telerik:GridViewDataColumn Header="Last Name" Width="*" />
<telerik:GridViewDataColumn Header="Title" Width="200" />
</telerik:RadGridView.Columns>
</telerik:RadGridView>
</Grid>
</ScrollViewer>
If im using 100% the Width of the Grid <telerik:GridViewDataColumn Header="FirstName" Width="*" /> and wrapping with the scroll bar. Why the column goes out of the frame horizontally. but if i takeout the scroll bar everything seems perfect. And I want the scroll bar to be there.
Example:
<ScrollViewer BorderBrush="Transparent" BorderThickness="0" HorizontalScrollBarVisibility="Auto" >
<telerik:RadGridView Grid.Row="1" ScrollMode="Deferred" ShowGroupPanel="False" AutoGenerateColumns="False">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn Header="First Name" Width="200" />
<telerik:GridViewDataColumn Header="Last Name" Width="*" />
<telerik:GridViewDataColumn Header="Title" Width="200" />
</telerik:RadGridView.Columns>
</telerik:RadGridView>
</Grid>
</ScrollViewer>