Ticket Q510511
Visible to All Users

DateEdit - Client side method GetDate() returns an odd format

created 12 years ago

Why on earth would the dateEdit control return the date in this format "Tue Jan 31 00:00:00 EST 2012"      … Any other format would have been immediately usable.

Please tell me you have an easy method to convert the date format to something usable without writing a special Devexpress DateEdit Parsing routine. i cant find one in your supporting documentation.

I tried to change the DisplayFormatString but it doesnt work.

I have a DateEdit in my index:

<index>
@Html.DevExpress().DateEdit( settings => { settings.Name = "startDate"; settings.Properties.DisplayFormatString = "yyyy-dd-MM"; //settings.Properties. settings.Date = new DateTime(2012, 01, 01); settings.Width = Unit.Pixel(200);
} ).GetHtml()
</index>When i click a button it calls the gridview.PerformCallback which sets an e.customArgs to pass through to the actionresult.
I try to consume it like this.

<controller>

var startDate = DateTime.Parse(Request.Params["StartDate"]);
</controller>
Controlling the format returned via a property on the DateEdit would be nice.

Comments (1)
MG MG
Michael Grainger 12 years ago

    I solved it like this,
                CultureInfo provider = CultureInfo.InvariantCulture;
                var pattern = @"[a-zA-Z]+ [a-zA-Z]+ [0-9]+ [0-9]+:[0-9]+:[0-9]+ (?<timezone>[a-zA-Z]+) [0-9]+";
                // DevExpress date format : Tue Jan 31 00:00:00 EST 2012
                var startDateString = Request.Params["StartDate"];
                Regex findTz = new Regex(pattern, RegexOptions.Compiled);

    var tz = findTz.Match(startDateString).Result("${timezone}");
                var format = "ddd MMM dd HH:mm:ss " + tz + " yyyy";

    var startDate = DateTime.ParseExact(startDateString, format, provider);
    My question remains, is there a property on the control that can simply output a format of my choosing or one that is standard ? That was far too laborious for such a simple thing.

    Answers approved by DevExpress Support

    created 12 years ago (modified 12 years ago)

    Hello Randy,
    I would like to note that the client-side date format differs from the server-side format. The client-side [ASPxClientDateEdit.GetDate](ms- help://DevExpress.NETv11.1/DevExpress.AspNet/DevExpressWebASPxEditorsScriptsASPxClientDateEdit_GetDatetopic.htm) method returns an object that is the "Date" object. Please refer to the JavaScript Date Object article, to learn more about the "Date" object's API.
    In your scenario, it is necessary to parse a date manually. Please take a look at this example for a solution:
    How to parse smart date expressions inputted into ASPxDateEdit

      Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

      Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.