I thought I had everything going well with my rad datepicker column from an autogenerated columns radgridview (chosen using a template selector), and it works well, except that when I add the row, it is cleared, and the user must then edit the column in the grid to reselect the date.
I think that to solve this both datatemplates for my date column (cell edit template, and cell template) must have the same binding (one is text the other rad datepicker control).
Unfortunately I cant seem to bind the RadDatePicker control's selected value to anything in my view model, without getting the error
property not found on 'object' ''DataRowView'
Note that if i just bind SelectedValue="1/1/1991" this always works, but when i do SelectedValue="{Binding RadDateSourceProp}" i get the error.
Any suggestions?
forgot to add, the grid itself is bound to a datatable as itemsource.