/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_util_Format({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":null,"uses":[],"html":"

Files

Reusable data formatting functions

\n
Defined By

Methods

Ext.util.Format
view source
( value ) : String
Converts the first character only of a string to upper case ...

Converts the first character only of a string to upper case

\n

Parameters

  • value : String

    The text to convert

    \n

Returns

Ext.util.Format
view source
( value, [format] ) : String
Parse a value into a formatted date using the specified format pattern. ...

Parse a value into a formatted date using the specified format pattern.

\n

Parameters

  • value : String/Date

    The value to format (Strings must conform to the format expected by the javascript Date object's parse() method)

    \n
  • format : String (optional)

    Any valid date format string (defaults to 'm/d/Y')

    \n

Returns

  • String

    The formatted date string

    \n
Ext.util.Format
view source
( format ) : Function
Returns a date rendering function that can be reused to apply a date format multiple times efficiently ...

Returns a date rendering function that can be reused to apply a date format multiple times efficiently

\n

Parameters

  • format : String

    Any valid date format string

    \n

Returns

Ext.util.Format
view source
( value, defaultValue ) : String
Checks a reference and converts it to the default value if it's empty ...

Checks a reference and converts it to the default value if it's empty

\n

Parameters

  • value : Mixed

    Reference to check

    \n
  • defaultValue : String

    The value to insert if it's undefined (defaults to \"\")

    \n

Returns

Ext.util.Format
view source
( value, length, word ) : String
Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length ...

Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length

\n

Parameters

  • value : String

    The string to truncate

    \n
  • length : Number

    The maximum length to allow before truncating

    \n
  • word : Boolean

    True to try to find a common work break

    \n

Returns

Ext.util.Format
view source
( size ) : String
Simple format for a file size (xxx bytes, xxx KB, xxx MB) ...

Simple format for a file size (xxx bytes, xxx KB, xxx MB)

\n

Parameters

Returns

  • String

    The formatted file size

    \n
Ext.util.Format
view source
( value ) : String
Convert certain characters (&, <, >, and ') from their HTML character equivalents. ...

Convert certain characters (&, <, >, and ') from their HTML character equivalents.

\n

Parameters

  • value : String

    The string to decode

    \n

Returns

Ext.util.Format
view source
( value ) : String
Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages. ...

Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.

\n

Parameters

  • value : String

    The string to encode

    \n

Returns

Ext.util.Format
view source
( value ) : String
Converts a string to all lower case letters ...

Converts a string to all lower case letters

\n

Parameters

  • value : String

    The text to convert

    \n

Returns

Ext.util.Format
view source
( ) : Function
It does simple math for use in a template, for example:\n\nvar tpl = new Ext.Template('{value} * 10 = {value:math(\"* 10...

It does simple math for use in a template, for example:

\n\n
var tpl = new Ext.Template('{value} * 10 = {value:math(\"* 10\")}');\n
\n\n

Returns

  • Function

    A function that operates on the passed value.

    \n
Ext.util.Format
view source
( The ) : String
Converts newline characters to the HTML tag <br/> ...

Converts newline characters to the HTML tag <br/>

\n

Parameters

  • The : String

    string value to format.

    \n

Returns

  • String

    The string with embedded <br/> tags in place of newlines.

    \n
Ext.util.Format
view source
( v, format ) : String
Formats the number according to the format string. ...

Formats the number according to the format string.

\n\n
examples (123456.789):\n
\n0 - (123456) show only digits, no precision
\n0.00 - (123456.78) show only digits, 2 precision
\n0.0000 - (123456.7890) show only digits, 4 precision
\n0,000 - (123,456) show comma and digits, no precision
\n0,000.00 - (123,456.78) show comma and digits, 2 precision
\n0,0.00 - (123,456.78) shortcut method, show comma and digits, 2 precision
\nTo reverse the grouping (,) and decimal (.) for international numbers, add /i to the end.\nFor example: 0.000,00/i\n
\n\n

Parameters

  • v : Number

    The number to format.

    \n
  • format : String

    The way you would like to format this text.

    \n

Returns

Ext.util.Format
view source
( format ) : Function
Returns a number rendering function that can be reused to apply a number format multiple times efficiently ...

Returns a number rendering function that can be reused to apply a number format multiple times efficiently

\n

Parameters

Returns

  • Function

    The number formatting function

    \n
Ext.util.Format
view source
( value, singular, [plural] )
Selectively do a plural form of a word based on a numeric value. ...

Selectively do a plural form of a word based on a numeric value. For example, in a template,\n{commentCount:plural(\"Comment\")} would result in \"1 Comment\" if commentCount was 1 or would be \"x Comments\"\nif the value is 0 or greater than 1.

\n

Parameters

  • value : Number

    The value to compare against

    \n
  • singular : String

    The singular form of the word

    \n
  • plural : String (optional)

    The plural form of the word (defaults to the singular with an \"s\")

    \n
Ext.util.Format
view source
( value, precision ) : Number
Rounds the passed number to the required decimal precision. ...

Rounds the passed number to the required decimal precision.

\n

Parameters

  • value : Number/String

    The numeric value to round.

    \n
  • precision : Number

    The number of decimal places to which to round the first parameter's value.

    \n

Returns

Ext.util.Format
view source
( value ) : String
Strips all script tags ...

Strips all script tags

\n

Parameters

  • value : Mixed

    The text from which to strip script tags

    \n

Returns

Ext.util.Format
view source
( value ) : String
Strips all HTML tags ...

Strips all HTML tags

\n

Parameters

  • value : Mixed

    The text from which to strip tags

    \n

Returns

Ext.util.Format
view source
( value, start, length ) : String
Returns a substring from within an original string ...

Returns a substring from within an original string

\n

Parameters

  • value : String

    The original text

    \n
  • start : Number

    The start index of the substring

    \n
  • length : Number

    The length of the substring

    \n

Returns

Ext.util.Format
view source
( value ) : String
Trims any whitespace from either side of a string ...

Trims any whitespace from either side of a string

\n

Parameters

  • value : String

    The text to trim

    \n

Returns

Ext.util.Format
view source
( value ) : Mixed
Checks a reference and converts it to empty string if it is undefined ...

Checks a reference and converts it to empty string if it is undefined

\n

Parameters

  • value : Mixed

    Reference to check

    \n

Returns

  • Mixed

    Empty string if converted, otherwise the original value

    \n
Ext.util.Format
view source
( value ) : String
Converts a string to all upper case letters ...

Converts a string to all upper case letters

\n

Parameters

  • value : String

    The text to convert

    \n

Returns

Ext.util.Format
view source
( value ) : String
Format a number as US currency ...

Format a number as US currency

\n

Parameters

Returns

  • String

    The formatted currency string

    \n
","superclasses":[],"meta":{},"requires":[],"html_meta":{},"statics":{"property":[],"cfg":[],"css_var":[],"method":[],"event":[],"css_mixin":[]},"files":[{"href":"Format.html#Ext-util-Format","filename":"Format.js"}],"linenr":1,"members":{"property":[],"cfg":[],"css_var":[],"method":[{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"capitalize","id":"method-capitalize"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"date","id":"method-date"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"dateRenderer","id":"method-dateRenderer"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"defaultValue","id":"method-defaultValue"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"ellipsis","id":"method-ellipsis"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"fileSize","id":"method-fileSize"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"htmlDecode","id":"method-htmlDecode"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"htmlEncode","id":"method-htmlEncode"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"lowercase","id":"method-lowercase"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"math","id":"method-math"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"nl2br","id":"method-nl2br"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"number","id":"method-number"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"numberRenderer","id":"method-numberRenderer"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"plural","id":"method-plural"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"round","id":"method-round"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"stripScripts","id":"method-stripScripts"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"stripTags","id":"method-stripTags"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"substr","id":"method-substr"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"trim","id":"method-trim"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"undef","id":"method-undef"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"uppercase","id":"method-uppercase"},{"tagname":"method","owner":"Ext.util.Format","meta":{},"name":"usMoney","id":"method-usMoney"}],"event":[],"css_mixin":[]},"inheritable":null,"private":null,"component":false,"name":"Ext.util.Format","singleton":true,"override":null,"inheritdoc":null,"id":"class-Ext.util.Format","mixins":[],"mixedInto":[]});