DatePicker.datePattern property

1 out of 5 rated this helpful - Rate this topic

Gets or sets the display pattern for the date.

The default date pattern is day.integer(2). You can change the date pattern by changing the number of integers displayed.

Syntax


<div data-win-control="WinJS.UI.DatePicker" data-win-options="{ datePattern : value}" />


var datePattern = datePicker.datePattern;
datePicker.datePattern = datePattern;

Property value

Type: String

The date display pattern.

You can use the following patterns for this value:{day.integer} | day.integer(n)}

Examples

The following code shows how to set a date pattern.


datePicker.datePattern = "{day.abbreviated(4)}";

Requirements

Namespace

WinJS.UI

Library

Ui.js

See also

DatePicker

 

 

Build date: 12/5/2012

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.