<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Date format still US in TimeRangePicker Module (using web GB) in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Date-format-still-US-in-TimeRangePicker-Module-using-web-GB/m-p/52035#M2663</link>
    <description>&lt;P&gt;Hello srw46&lt;/P&gt;

&lt;P&gt;It may increase the profile of the issue if you report it as well, keeps it on there radar as well.&lt;/P&gt;

&lt;P&gt;"&lt;EM&gt;Unfortunately I don't think I'll get such direct edits through our change process so we'll have to deal with the US format for now.&lt;/EM&gt;" -- Same for me.&lt;/P&gt;</description>
    <pubDate>Wed, 10 Aug 2011 11:03:01 GMT</pubDate>
    <dc:creator>WayneClarke</dc:creator>
    <dc:date>2011-08-10T11:03:01Z</dc:date>
    <item>
      <title>Date format still US in TimeRangePicker Module (using web GB)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Date-format-still-US-in-TimeRangePicker-Module-using-web-GB/m-p/52031#M2659</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;

&lt;P&gt;My TimeRangePicker module still displays the date in US format when selecting a custom time despite me using the /en-GB/ locale in the URL and despite all others formats showing GB format.&lt;/P&gt;

&lt;P&gt;Is this an issue unique to me? If it is, what could be causing it and if it's not, can I alter this to GB format somehow?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2011 14:07:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Date-format-still-US-in-TimeRangePicker-Module-using-web-GB/m-p/52031#M2659</guid>
      <dc:creator>srw46</dc:creator>
      <dc:date>2011-08-02T14:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Date format still US in TimeRangePicker Module (using web GB)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Date-format-still-US-in-TimeRangePicker-Module-using-web-GB/m-p/52032#M2660</link>
      <description>&lt;P&gt;Anybody else experiencing this issue?  Should I submit it as a bug?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2011 07:15:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Date-format-still-US-in-TimeRangePicker-Module-using-web-GB/m-p/52032#M2660</guid>
      <dc:creator>srw46</dc:creator>
      <dc:date>2011-08-10T07:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Date format still US in TimeRangePicker Module (using web GB)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Date-format-still-US-in-TimeRangePicker-Module-using-web-GB/m-p/52033#M2661</link>
      <description>&lt;P&gt;Found the bug ref (the bug reference for your time-picker problem is Ticket &lt;STRONG&gt;SPL-35748&lt;/STRONG&gt; )&lt;/P&gt;

&lt;P&gt;I have already submitted a bug for this last year I am trying to find the bug reference. It has been an issue for a while.&lt;/P&gt;

&lt;P&gt;I found a solution but this will make the timepicker UK day/month for everyone not recommend for production.&lt;/P&gt;

&lt;P&gt;I haven`t tested this on 4.2 &lt;/P&gt;

&lt;P&gt;Each time you upgrade you will need to find the files and then patch them. &lt;/P&gt;

&lt;P&gt;jquery-ui-1.7.2.custom.min.js&lt;BR /&gt;
TimeRangePicker.js&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;jquery-ui-1.7.2.custom.min.js&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;dateFormat:"mm/dd/yy" in the Datepicker function  should be dateFormat:"dd/mm/yy” I didn’t see any locality checking  &lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;TimeRangePicker.js&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;From&lt;/STRONG&gt; &lt;/P&gt;

&lt;P&gt;var defaultDate = new Date(); // latest date defaults to today (at 00:00:00.000)&lt;BR /&gt;&lt;BR /&gt;
        $('.latestDate', this._customDateTimePopup).val((parseInt(defaultDate.getMonth())+1) + '/' + defaultDate.getDate() + '/' + defaultDate.getFullYear());&lt;BR /&gt;
        defaultDate.setDate(defaultDate.getDate()-1); // earliest defaults to yesterday (at 00:00:00.000)&lt;BR /&gt;
        $('.earliestDate', this._customDateTimePopup).val((parseInt(defaultDate.getMonth())+1) + '/' + defaultDate.getDate() + '/' + defaultDate.getFullYear());&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;To&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;var defaultDate = new Date(); // latest date defaults to today (at 00:00:00.000)&lt;BR /&gt;&lt;BR /&gt;
        $('.latestDate', this._customDateTimePopup).val(defaultDate.getDate() + '/' + (parseInt(defaultDate.getMonth())+1)  + '/' + defaultDate.getFullYear());&lt;BR /&gt;
        defaultDate.setDate(defaultDate.getDate()-1); // earliest defaults to yesterday (at 00:00:00.000)&lt;BR /&gt;
        $('.earliestDate', this._customDateTimePopup).val(defaultDate.getDate() + '/' + (parseInt(defaultDate.getMonth())+1) + '/' + defaultDate.getFullYear());&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 09:47:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Date-format-still-US-in-TimeRangePicker-Module-using-web-GB/m-p/52033#M2661</guid>
      <dc:creator>WayneClarke</dc:creator>
      <dc:date>2020-09-28T09:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: Date format still US in TimeRangePicker Module (using web GB)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Date-format-still-US-in-TimeRangePicker-Module-using-web-GB/m-p/52034#M2662</link>
      <description>&lt;P&gt;Thank you, WayneClarke.&lt;/P&gt;

&lt;P&gt;Unfortunately I don't think I'll get such direct edits through our change process so we'll have to deal with the US format for now.&lt;/P&gt;

&lt;P&gt;Is there anything I can do to expedite the bug being addressed, like also submitting etc?&lt;/P&gt;

&lt;P&gt;EDIT : I've submitted the issue.  It was appended to an 'enhancement request' but that seems debatable to me!  The advertised feature is that changing locale should change the format across the board. It's obviously an oversight and should not be bundled in with the 'feature wish list'.&lt;/P&gt;

&lt;P&gt;When's Splunk Live? &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2011 08:25:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Date-format-still-US-in-TimeRangePicker-Module-using-web-GB/m-p/52034#M2662</guid>
      <dc:creator>srw46</dc:creator>
      <dc:date>2011-08-10T08:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Date format still US in TimeRangePicker Module (using web GB)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Date-format-still-US-in-TimeRangePicker-Module-using-web-GB/m-p/52035#M2663</link>
      <description>&lt;P&gt;Hello srw46&lt;/P&gt;

&lt;P&gt;It may increase the profile of the issue if you report it as well, keeps it on there radar as well.&lt;/P&gt;

&lt;P&gt;"&lt;EM&gt;Unfortunately I don't think I'll get such direct edits through our change process so we'll have to deal with the US format for now.&lt;/EM&gt;" -- Same for me.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2011 11:03:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Date-format-still-US-in-TimeRangePicker-Module-using-web-GB/m-p/52035#M2663</guid>
      <dc:creator>WayneClarke</dc:creator>
      <dc:date>2011-08-10T11:03:01Z</dc:date>
    </item>
  </channel>
</rss>

