Hello
I have a grid with tow columns
when there is no data in the grid
only the header of the first column is shown
this is my xaml
Thanks
I have a grid with tow columns
when there is no data in the grid
only the header of the first column is shown
this is my xaml
| <Grid> |
| <telerik:RadGridView Name="gvCustomersIn" AutoGenerateColumns="False" Margin="10,10,10,10" Height="auto" ColumnsWidthMode="Fill" |
| HorizontalAlignment="Center" IsFilteringAllowed="False" FlowDirection="RightToLeft" ShowGroupPanel="False" Width="auto" |
| BeginningEdit="Grid_BeginningEdit" CellEditEnded="gvCustomersIn_CellEditEnded"> |
| <telerik:RadGridView.Columns> |
| <telerik:GridViewComboBoxColumn |
| DataMemberBinding="{Binding Path=CustomerUnitID}" |
| DisplayMemberPath="Name" |
| SelectedValueMemberPath="Id" |
| Header="שם לקוח" |
| UniqueName="CustomerUnitName" |
| /> |
| <telerik:GridViewComboBoxColumn |
| DataMemberBinding="{Binding Path=CustomerTypeID}" |
| DisplayMemberPath="Name" |
| SelectedValueMemberPath="Id" |
| Header="סוג לקוח" |
| UniqueName="CustomerTypeName" |
| /> |
| </telerik:RadGridView.Columns> |
| </telerik:RadGridView> |
| </Grid> |
Thanks