This is my first attempt with this grid. One of my columns contains datetime values. Because I want the button for the editor to always be visible, I created a CellTemplate as I saw mentioned in the forum. This works fine. However, once I'm in the editor, nothing will close or hide the editor, even if I click on another cell or control or hit Escape.
<telerik:GridViewDataColumn DataMemberBinding="{Binding Timestamp}" Width="200"> <telerik:GridViewDataColumn.CellTemplate> <DataTemplate> <telerik:RadDatePicker SelectedDate="{Binding Timestamp}" IsTooltipEnabled="False"/> </DataTemplate> </telerik:GridViewDataColumn.CellTemplate></telerik:GridViewDataColumn>