I changed my column type from GridBoundColumn to GridDateTimeColumn using the datepicker control. When I edit a row I don't see the textbox with the date in it (see image). Also how to control the position of the calender control
.
<%--<
telerik:GridBoundColumn
SortExpression
=
"EffectiveDate"
HeaderText
=
"EffectiveDate"
HeaderButtonType
=
"TextButton"
DataField
=
"EffectiveDate"
UniqueName
=
"EffectiveDate"
DataFormatString
=
"{0:MM/dd/yyyy}"
Visible
=
"True"
>
<
HeaderStyle
Width
=
"80px"
/>
</
telerik:GridBoundColumn
>--%>
<
telerik:GridDateTimeColumn
DataField
=
"EffectiveDate"
DataFormatString
=
"{0:MM/dd/yyyy}"
PickerType
=
"DatePicker"
HeaderText
=
"EffectiveDate"
SortExpression
=
"EffectiveDate"
DataType
=
"System.DateTime"
UniqueName
=
"EffectiveDate"
EditDataFormatString
=
"MM/dd/yyyy"
>
<
HeaderStyle
Width
=
"170px"
/>
</
telerik:GridDateTimeColumn
>