Rank: Advanced Member Groups: Member
Joined: 8/11/2008 Posts: 37
|
Hello, I have a Grid with 2 columns:
<eo:Grid ID="Grid1" runat="server" EnableKeyboardNavigation="True" Height="550px" Width="220px" FullRowMode="false" AllowNewItem="true" AllowPaging="True" PageSize="25" RunningMode="Callback" KeyField="id_mw" OnPageIndexChanged="Grid1_PageIndexChanged" > <Columns> <eo:TextBoxColumn DataField="wert" DataType="Float" HeaderText="Wert" DataFormat="{0:N3}" Width="60"/> <eo:TextBoxColumn DataField="zeitpkt" HeaderText="Zeitpkt" DataType="DateTime" DataFormat="{0:dd.MM.yy hh:mm}" Width="110"/> </Columns> </eo:Grid>
When I edit a value the data format switches back into standard format in both columns.
How can I change this?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
I believe DataFormat is one way only and it is mainly for display purpose, so it does not work well together with DataType. We will look into it and see what we can do.
Thanks!
|