ok, it seems that whenever I put a DataInput in a formview or RadGrid template, I can't seem to bind it to one of the date I want to change
<telerik:RadDatePicker ID="OnsetDatePicker" runat="server"
Culture="English (United States)" Width="100%"
SelectedDate='<%# Bind("OnsetDate") %>' >
<DatePopupButton CssClass="radPopupImage_Default" />
<Calendar runat="server" CellAlign="Center" CellVAlign="Middle" DayNameFormat="FirstLetter" FirstDayOfWeek="Default"
MonthLayout="Layout_7columns_x_6rows" Orientation="RenderInRows" TitleAlign="Center"
UseColumnHeadersAsSelectors="False" UseRowHeadersAsSelectors="False">
</Calendar>
<DateInput runat="server" Width="100%">
</DateInput>
</telerik:RadDatePicker>
they work fine with edit mode, as soon as I put them in insert mode and select a date, the SelectedDate value no longer binds to whatever I need to bind, and in the end I get a null value for the date.
Is there any other Text Field that I can bind to just so that I can get the value from selected date and another field?