[CLOSED] Problems with DateField

  1. #1

    [CLOSED] Problems with DateField

    Day month and year are set correctly.
    Hours, minutes and seconds are not set correctly.
    Their value is 0.
    Why?


    <%@ Page Language="C#" %>
    <%@ Register assembly="Ext.Net" namespace="Ext.Net" tagprefix="ext" %>
    <script runat="server">     
    protected void Page_Load(object sender, EventArgs e)     
    {         
        if (!X.IsAjaxRequest)
        {
            DateFieldCreationdate.SelectedDate = DateTime.Now;
        }
    }
    </script> 
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
    <ext:ResourcePlaceHolder ID="ResourcePlaceHolder1" runat="server"></ext:ResourcePlaceHolder>
    </head>
    <body>
        <ext:ResourceManager ID="ResourceManager1" runat="server" />
        <form id="form1" runat="server">
        <ext:DateField ID="DateFieldCreationdate" Width="450" runat="server" FieldLabel="Data di creazione" Format="dd-MM-yyyy HH:mm:ss" />
    </form>
    </body>
    </html>
    Last edited by Daniil; Oct 18, 2010 at 6:46 PM. Reason: [CLOSED]
  2. #2
    Hi,

    DateField doesn't operate with time (it always clears the time)
  3. #3
    Hello.
    this is not true
    with this code works correctly
     
    FormPanel1.SetValues(new
    {
     CreationDate = DateTime.Now
    });
     <ext:DateField ID="DateFieldCreationdate" ReadOnly="true" runat="server" FieldLabel="Data di creazione" Format="dd-MM-yyyy HH:mm:ss" DataIndex="CreationDate" />
  4. #4
    Hi,

    If choose new date then time will be truncated because DateField is not designed for time part
    If you need to display the data then please use DisplayField

Similar Threads

  1. [CLOSED] Problems with IE 9
    By FpNetWorth in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Mar 07, 2011, 9:06 AM
  2. [CLOSED] [1.0] MVC Problems
    By Timothy in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Nov 03, 2010, 8:46 PM
  3. [CLOSED] Problems with IIS 6
    By heysol in forum 1.x Help
    Replies: 5
    Last Post: Dec 02, 2008, 11:41 AM
  4. [CLOSED] Problems with GridPanel
    By DasPhansom in forum 1.x Help
    Replies: 6
    Last Post: Nov 18, 2008, 9:02 AM
  5. [CLOSED] Problems with IIS
    By heysol in forum 1.x Help
    Replies: 8
    Last Post: Oct 29, 2008, 4:26 AM

Posting Permissions