Consider the following definition for a column of a RadGrid:
<
telerik:GridDateTimeColumn DataField="p.AmendEffDate" DataType="System.DateTime" DataFormatString="{0:MM/dd/yyyy}" HeaderStyle-Width="100px" FooterStyle-Width="100px" ItemStyle-Width="100px" HeaderText="Amend Date" SortExpression="p.AmendEffDate" UniqueName="AmendEffDate" PickerType="DatePicker" ></telerik:GridDateTimeColumn>
It works wonderfully except that when in edit mode, the editing cell size overlaps other cells. Like the cell wants to be larger but since it is only 100px, it just overlaps the neighboring cell. There is no EditStyle-Width property or anything. I'm pretty sure it is doing this because the cell wants to include the Time in the data. However, in this case, there is no time data. How do I resolve this issue? I need the cell to be 100px. No larger.