This question is locked. New answers and comments are not allowed.
Hi telerik,
In my RadGridView I'm using one column to RadComboBox (Title Column), I've problem in that Title column as data is not showing on initial load-up and disappeared when not focus on that particular column. But other column show correctly at all time.
In step1, (just loading up page) and can't see data on that column.
In step2, when I click on that column data is showing correctly.
In step3, I click again and Actual RadComboBox and I can change data.
In step4, If i click on other area or other column, (title column) data is disappearing again.
Here is my code snipped (MVVM approached) and is there something wrong?
Thanks and Regards
In my RadGridView I'm using one column to RadComboBox (Title Column), I've problem in that Title column as data is not showing on initial load-up and disappeared when not focus on that particular column. But other column show correctly at all time.
In step1, (just loading up page) and can't see data on that column.
In step2, when I click on that column data is showing correctly.
In step3, I click again and Actual RadComboBox and I can change data.
In step4, If i click on other area or other column, (title column) data is disappearing again.
Here is my code snipped (MVVM approached) and is there something wrong?
<telerik:RadGridView Name="radgvPersonal" ItemsSource="{Binding Path=PersonalInfos}" AutoGenerateColumns="False" ShowColumnFooters="True" RowIndicatorVisibility="Collapsed" CanUserFreezeColumns="False" ShowGroupPanel="False" SelectionUnit="FullRow"><telerik:RadGridView.Columns><telerik:GridViewComboBoxColumn Header="Title" IsResizable="False" IsFilterable="True" DataMemberBinding="{Binding titleid,Mode=TwoWay}" ItemsSource="{Binding Path = titleDescs,Mode=OneWay" DisplayMemberPath="DisplayName" SelectedValueMemberPath="titleid" /><telerik:GridViewDataColumn Header="First Name" IsFilterable="True" IsGroupable="False" IsReorderable="False" IsResizable="False" ShowDistinctFilters="False" SortingState="None" DataMemberBinding="{Binding Path=FirstName}" />Thanks and Regards