I am new to Telerik controls having recently migrated from Xceed.
I’m attempting some simple editing of a dataset using the RadGridView control.
I bind the ItemSource of the RadGridView through code. When I click on an auto generated column, the data editing works perfectly. When I try to edit a column that I have defined as a GridViewDataColumn, I get an empty text box (the bound data disappears) and my changes to do not commit when I leave the column.
telerik:RadGridView Name="gvInelig" telerik:StyleManager.Theme="Office_Black">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn Header="Name" DataMemberBinding="{Binding EmpNameFullLF}"/>
</telerik:RadGridView.Columns>
</telerik:RadGridView>
Take the grid above for example. I have defined one column called "Name" which is bound to a column in the dataset called "EmpNameFullLF". I can see my defined "Name" column along with the auto generated "EmpNameFullLF" column in my grid.
When I click to edit the "Name" column, the bound data disappears and I get an empty text box. If I type and hit enter, my change does not commit.
When i click into the auto generated "EmpNameFullLF" column, I can change the bound data and my change persists when the row leaves edit mode.
Obviously, I’m missing something. It's probably something simple. However, I’ve looked through the demos and I don’t see what it is. Any help is greatly appreciated. Thank you.