Skip to content

New finction to format boolean values #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
123 changes: 67 additions & 56 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,57 +1,68 @@
# jQuery Format

The jQuery Format plugin enables the formatting and parsing of dates and numbers. It's a
client-side alternative of the popular
[SimpleDateFormat](http://java.sun.com/javase/6/docs/api/java/text/SimpleDateFormat.html)
and [NumberFormat](http://java.sun.com/javase/6/docs/api/java/text/NumberFormat.html) APIs.

## Usage

Formatting dates and numbers is as easy as the following:

$.format.date(new Date(), 'MMMM dd, yyyy KK:mm:ss:SSS a');
$.format.number(7456.2, '#,##0.00#');

Parsing is very similar to the formatting but works with strings as a first parameter:

$.format.date('1.5.2009', 'dd.MM.yyyy');
$.format.number('1.231.231.212,3241');

The second format parameter is always optional and by default the plugin uses the formats
of the en_US locale. The locale can be globally configured using the following:

$.format.locale({
date: {
format: 'dddd, MMMM dd, yyyy h:mm:ss tt',
monthsFull: ['January','February','March','April','May','June','July','August','September','October','November','December'],
monthsShort: ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'],
daysFull: ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],
daysShort: ['Sun','Mon','Tue','Wed','Thu','Fri','Sat'],
timeFormat: 'h:mm tt',
shortDateFormat: 'M/d/yyyy',
longDateFormat: 'dddd, MMMM dd, yyyy'
},
number: {
format: '#,##0.0#',
groupingSeparator: ',',
decimalSeparator: '.'
}
});

## Changes

### 11/24/2011 - jQuery Format 1.2

- Issue 8: Parsing string
- Issue 5: Decimal rounding
- Fixed issue with fraction formatting.

### 09/26/2010 - jQuery Format 1.1

- Issue 3: Issue on rounding.
- Issue 2: A semicolon is missing line 275.
- Issue 1: Issue with number format #.## (or more).

### 12/23/2009 - jQuery Format 1.0

# jQuery Format

The jQuery Format plugin enables the formatting and parsing of dates and numbers. It's a
client-side alternative of the popular
[SimpleDateFormat](http://java.sun.com/javase/6/docs/api/java/text/SimpleDateFormat.html)
and [NumberFormat](http://java.sun.com/javase/6/docs/api/java/text/NumberFormat.html) APIs.

## Usage

Formatting dates and numbers is as easy as the following:

$.format.date(new Date(), 'MMMM dd, yyyy KK:mm:ss:SSS a');
$.format.number(7456.2, '#,##0.00#');
$.format.bool(true);

Parsing is very similar to the formatting but works with strings as a first parameter:

$.format.date('1.5.2009', 'dd.MM.yyyy');
$.format.number('1.231.231.212,3241');
$.format.bool('True');

The second format parameter is always optional and by default the plugin uses the formats
of the en_US locale. The locale can be globally configured using the following:

$.format.locale({
date: {
format: 'dddd, MMMM dd, yyyy h:mm:ss tt',
monthsFull: ['January','February','March','April','May','June','July','August','September','October','November','December'],
monthsShort: ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'],
daysFull: ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],
daysShort: ['Sun','Mon','Tue','Wed','Thu','Fri','Sat'],
timeFormat: 'h:mm tt',
shortDateFormat: 'M/d/yyyy',
longDateFormat: 'dddd, MMMM dd, yyyy'
},
number: {
format: '#,##0.0#',
groupingSeparator: ',',
decimalSeparator: '.'
},
bool: {
trueString: ['true', 'yes'],
falseString: ['false', 'no'],
trueValue: 'Yes',
falseValue: 'No'
}
});

## Changes
### 11/20/2012 - jQuery Format 1.3

- Added support for boolean formatting

### 11/24/2011 - jQuery Format 1.2

- Issue 8: Parsing string
- Issue 5: Decimal rounding
- Fixed issue with fraction formatting.

### 09/26/2010 - jQuery Format 1.1

- Issue 3: Issue on rounding.
- Issue 2: A semicolon is missing line 275.
- Issue 1: Issue with number format #.## (or more).

### 12/23/2009 - jQuery Format 1.0

Initial release.
Loading