对于datepickerfiled

dateFormat 时间格式 Y-m-d

w星期几    W 一年第多少周

时间的初始化

mydatefield.setValue(

{

year:2013,

month:11,

day:28

      }

)

一、对于星期汉化,查看源码发现

dayNames : [
        "Sunday",
        "Monday",
        "Tuesday",
        "Wednesday",
        "Thursday",
        "Friday",
        "Saturday"
    ]

  两种方法修改:1.源码修改彻底汉化,但是不建议这样使用,如果sencha touch 升级,会导致,变回英文;

        2.在使用处,进行汉化,Ext.Date.dayNames=[“星期一”,“星期二”,“星期三”,……],其实也可以顶一个全局文件

二、月份汉化,查看源码

monthNames : [
        "January",
        "February",
        "March",
        "April",
        "May",
        "June",
        "July",
        "August",
        "September",
        "October",
        "November",
        "December"
    ],

monthNumbers : {
        Jan:0,
        Feb:1,
        Mar:2,
        Apr:3,
        May:4,
        Jun:5,
        Jul:6,
        Aug:7,
        Sep:8,
        Oct:9,
        Nov:10,
        Dec:11
    }

  两种方法修改:1.源码修改彻底汉化,但是不建议这样使用,如果sencha touch 升级,会导致,变回英文;

        2.在使用处,进行汉化,Ext.Date.monthNames=[“一月”,“二月”,“三月”,……];其实也可以顶一个全局文件

                  Ext.Date.monthNumbers=[Jan:1, Feb:2,Mar:3,……];其实也可以顶一个全局文件

这里是所有目前支持的汉化格式

Format  Description                                                                                 Example returned values
------  -----------------------------------------------------------------------        -----------------------
  d  Day of the month, 2 digits with leading zeros                                   01 to 31
  D  A short textual representation of the day of the week                       Mon to Sun
  j  Day of the month without leading zeros                                            1 to 31
  l  A full textual representation of the day of the week                            Sunday to Saturday
  N  ISO-8601 numeric representation of the day of the week                    1 (for Monday) through 7 (for Sunday)
  S  English ordinal suffix for the day of the month, 2 characters                st, nd, rd or th. Works well with j
  w  Numeric representation of the day of the week                                   0 (for Sunday) to 6 (for Saturday)
  z     The day of the year (starting from 0)                                                  0 to 364 (365 in leap years)
  W     ISO-8601 week number of year, weeks starting on Monday                 01 to 53
  F     A full textual representation of a month, such as January or March        January to December
  m     Numeric representation of a month, with leading zeros                        01 to 12
  M     A short textual representation of a month                                           Jan to Dec
  n     Numeric representation of a month, without leading zeros                     1 to 12
  t     Number of days in the given month                                                     28 to 31
  L     Whether it's a leap year                                                             1 if it is a leap year, 0 otherwise.
  o     ISO-8601 year number (identical to (Y), but if the ISO week number (W)    Examples: 1998 or 2004
        belongs to the previous or next year, that year is used instead)
  Y     A full numeric representation of a year, 4 digits                                    Examples: 1999 or 2003
  y     A two digit representation of a year                                                     Examples: 99 or 03
  a     Lowercase Ante meridiem and Post meridiem                                        am or pm
  A     Uppercase Ante meridiem and Post meridiem                                       AM or PM
  g     12-hour format of an hour without leading zeros                                  1 to 12
  G     24-hour format of an hour without leading zeros                                 0 to 23
  h     12-hour format of an hour with leading zeros                                      01 to 12
  H     24-hour format of an hour with leading zeros                                      00 to 23
  i     Minutes, with leading zeros                                                                 00 to 59
  s     Seconds, with leading zeros                                                               00 to 59
  u     Decimal fraction of a second                                                              Examples:
        (minimum 1 digit, arbitrary number of digits allowed)                                   001 (i.e. 0.001s) or
                                                                                                                        100 (i.e. 0.100s) or
                                                                                                                        999 (i.e. 0.999s) or
                                                                                                                        999876543210 (i.e. 0.999876543210s)
  O     Difference to Greenwich time (GMT) in hours and minutes                    Example: +1030
  P     Difference to Greenwich time (GMT) with colon between hours and minutes      Example: -08:00
  T     Timezone abbreviation of the machine running the code                        Examples: EST, MDT, PDT ...
  Z     Timezone offset in seconds (negative if west of UTC, positive if east)      -43200 to 50400
  c     ISO 8601 date
        Notes:                                                                                                Examples:
        1) If unspecified, the month / day defaults to the current month / day,         1991 or
           the time defaults to midnight, while the timezone defaults to the           1992-10 or
           browser's timezone. If a time is specified, it must include both hours     1993-09-20 or
           and minutes. The "T" delimiter, seconds, milliseconds and timezone        1994-08-19T16:20+01:00 or
           are optional.                                                                       1995-07-18T17:21:28-02:00 or
        2) The decimal fraction of a second, if specified, must contain at             1996-06-17T18:22:29.98765+03:00 or
           least 1 digit (there is no limit to the maximum number                          1997-05-16T19:23:30,12345-0400 or
           of digits allowed), and may be delimited by either a '.' or a ','             1998-04-15T20:24:31.2468Z or
        Refer to the examples on the right for the various levels of                    1999-03-14T20:24:32Z or
        date-time granularity which are supported, or see                                2000-02-13T21:25:33
        http://www.w3.org/TR/NOTE-datetime for more info.                                        2001-01-12 22:26:34
  U     Seconds since the Unix Epoch (January 1 1970 00:00:00 GMT)                         1193432466 or -2138434463
  MS    Microsoft AJAX serialized dates                                                             \/Date(1238606590509)\/ (i.e. UTC milliseconds since epoch) or
                                                                                              \/Date(1238606590509+0800)\/

sencha Touch 的 DatePickerField等时间的汉化的更多相关文章

  1. sencha touch datepicker/datepickerfield(时间选择控件)扩展

    参考资料: https://market.sencha.com/extensions/datetimepicker 适用于2.4.1版本 uxPickerTime 使用方法参考:datepicker控 ...

  2. sencha touch datepicker/datepickerfield(时间选择控件)扩展(废弃 仅参考)

    参考资料:https://market.sencha.com/extensions/datetimepicker 上面的扩展在2.2有些问题,参考源码重新写了一个 TimePicker: Ext.de ...

  3. sencha touch 问题汇总

    做sencha touch有一段时间了,目前而言,sencha touch在android上问题比较严重,在此对android中sencha touch的问题做一些汇总: 1.内存问题: 打包成安装程 ...

  4. HighCharts/Highstock使用小结,使用汉化及中文帮助文档

       此文档是本人在开发过程图形报表时使用HighCharts所遇到的问题及解决方案 .最后附上有HighCharts中文帮助文档 HighCharts  版本:Highcharts-3.0.1 Hi ...

  5. Sencha Touch+PhoneGap打造超级奶爸之喂养记(一) 源码免费提供

    起源 非常高兴我的宝宝健康平安的出生了.对于初次做奶爸的我,喜悦过后,面临着各中担心,担心宝宝各项指标是否正常.最初几天都是在医院待着,从出生那一天开始,护士妹妹隔一段时间就会来问宝宝的喂奶,大小便, ...

  6. Sencha Touch+PhoneGap打造超级奶爸之喂养记(一) 源码免费提供(转)

    起源 非常高兴我的宝宝健康平安的出生了.对于初次做奶爸的我,喜悦过后,面临着各中担心,担心宝宝各项指标是否正常.最初几天都是在医院待着,从出生那一天开始,护士妹妹隔一段时间就会来问宝宝的喂奶,大小便, ...

  7. 用 Sencha Touch 构建移动 web 应用程序

    Sencha Touch 是一个使用 HTML5.CSS3 和 JavaScript 语言构建的移动 web 应用程序框架,在本文中,学习如何应用您当前的 web 开发技能进行移动 web 开发.下载 ...

  8. 亲手使用Sencha Touch + phonepag开发Web APP随笔 -- 第一个APP

    参考博文: [Phonegap+Sencha Touch] 移动开发1.准备工作 [Phonegap+Sencha Touch] 移动开发2.PhoneGap/Cordova初步使用   经过差不多1 ...

  9. 亲手使用Sencha Touch + phonepag开发Web APP随笔 -- 环境安装篇

    最近因为有个项目需要制作APP,考虑到需要兼容Android和IOS,所以想采用WebAPP的方式来开发.现在是从零开始学习之路,走起-   通过网上博客和论坛,开始安装了一堆软件: 1. Sench ...

随机推荐

  1. [Java] JavaMail 发送 html 格式、带附件的邮件

    本案例演示发送 html 格式,可带附件的邮件发送.发送纯文本邮件的例子可参照上一篇博文JavaMail 简单案例. EmailHelper, Email 的帮助类,向帮助类提供 SMTP 服务器域名 ...

  2. eclipse 导入项目时候java版本不一致问题

    最近导入一个java项目,发现我安装的java版本是1.8.0_111,而项目的版本是1.8.0_101,当然不想重新再安装旧的java版本,于是就在网上找了解决方法. 在项目的library中右击, ...

  3. 【模拟】Class 解题报告

    [问题描述] 信息班这期的课将要结束了,老师要从现在班上的同学中选出比较优秀的同学进入下一期的学习.而录取标准则是将平时作业和考试一起考虑,综合成绩排在前面的则录取.经过一番思考,老师作了以下的筛选计 ...

  4. RabbitMQ-清空队列中(一个channel或连接中)的Unacknowledged状态的消息

    清空所有:nack 时将参数delivery-tag设为0,multiple设为1. 清空小于等于某delivery-tag的所有消息:nack 时将参数delivery-tag设为正数(介于1和92 ...

  5. .NET 性能分析工具

    Download .NET Profiler http://www.yourkit.com/dotnet/download/ dotTrace 5.5 Performance http://www.j ...

  6. poj 3478 The Stable Marriage Problem 稳定婚姻问题

    题目给出n个男的和n个女的各自喜欢对方的程度,让你输出一个最佳搭配,使得他们全部人的婚姻都是稳定的. 所谓不稳婚姻是说.比方说有两对夫妇M1,F1和M2,F2,M1的老婆是F1,但他更爱F2;而F2的 ...

  7. opencv2对读书笔记——使用均值漂移算法查找物体

    一些小概念 1.反投影直方图的结果是一个概率映射,体现了已知图像内容出如今图像中特定位置的概率. 2.概率映射能够找到最初的位置,从最初的位置開始而且迭代移动,便能够找到精确的位置,这就是均值漂移算法 ...

  8. (五)带属性值的ng-app指令,实现自己定义模块的自己主动载入

    如今我们看下怎样使用带属性值的ng-app命令,让ng-app自己主动载入我们自己定义的模块作为根模块. <!DOCTYPE html> <html> <head> ...

  9. Jquery中的事件绑定$(&quot;#btn&quot;).bind(&quot;click&quot;,function(){ })

    Jquery中的事件绑定:$("#btn").bind("click",function(){  }) 由于每次都这么调用太麻烦,所以jquery就用$(&qu ...

  10. 微信,QQ这类IM app怎么做——谈谈Websocket

    前言 关于我和WebSocket的缘:我从大二在计算机网络课上听老师讲过之后,第一次使用就到了毕业之后的第一份工作.直到最近换了工作,到了一家是含有IM社交聊天功能的app的时候,我觉得我现在可以谈谈 ...