Hi and thanks for your help in advance.
I've currently got a RadGrid bound to an EntityDataSource and I'm trying to do the following it works fine for edits but the moment I try and do an insert I get the following message 'Telerik.Web.UI.GridInsertionObject' does not contain a property with the name 'StartDate'.
I've noticed most of the examples seem to avoid using a RadDatePicker inside a grid and I'm starting to think I've discovered why...
I've currently got a RadGrid bound to an EntityDataSource and I'm trying to do the following it works fine for edits but the moment I try and do an insert I get the following message 'Telerik.Web.UI.GridInsertionObject' does not contain a property with the name 'StartDate'.
| <EditItemTemplate> |
| <telerik:RadDatePicker ID="StartDate" runat="server" SelectedDate='<%# Bind("StartDate") %>' /> |
| <asp:RequiredFieldValidator ID="DataRequired" runat="server" ControlToValidate="StartDate" |
| ErrorMessage="Required" /> |
| </EditItemTemplate> |
I've noticed most of the examples seem to avoid using a RadDatePicker inside a grid and I'm starting to think I've discovered why...