This question is locked. New answers and comments are not allowed.
GridView is resizing on scrolling even when the data is of the same length in the column. Please find the xaml code snippet and let me know the issue.
<
telerik:RadGridView
x:Name
=
"EntityDataGrid"
ItemsSource
=
"{Binding tblOrganizations}"
SelectedItem
=
"{Binding ElementName=basePage, Path=SelectedEntity, Mode=TwoWay}"
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
Header
=
"Name"
DataMemberBinding
=
"{Binding Name}"
/>
<
telerik:GridViewDataColumn
Header
=
"Abbreviation"
DataMemberBinding
=
"{Binding Abbreviation}"
/>
<
telerik:GridViewDataColumn
Header
=
"Description"
DataMemberBinding
=
"{Binding Description}"
Width
=
"*"
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>