Hello,
I tried to add a griddatetimecolum in my grid and the display is really bad in chrome as you can see in attachment files.
At first the griddatetimecolumn is very large and the refresh button is in a strange position.
Is it a way to see it the same way as internet explorer or firefox?
My aspx page contains this description for the grid:
<telerik:RadGrid ID="mGrdEvent" runat="server" GridLines="None" AllowPaging="True"
AllowSorting="True" AutoGenerateColumns="False" ShowStatusBar="True"
AllowFilteringByColumn="True" ...
>
<MasterTableView CommandItemDisplay="Top" DataKeyNames="Identifier"
AllowFilteringByColumn="true" AllowAutomaticInserts="False">
<Columns>
...
<telerik:GridDateTimeColumn UniqueName="CreationDate" DataField="CreationDate"
PickerType="DateTimePicker" HeaderText="Creation date" DataFormatString="{0}">
<ItemStyle Width="120px" />
</telerik:GridDateTimeColumn>
</Columns>
...
</MasterTableView>
</telerik:RadGrid>