X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/docs/api/Ext.JSON.html diff --git a/docs/api/Ext.JSON.html b/docs/api/Ext.JSON.html new file mode 100644 index 00000000..2c75142f --- /dev/null +++ b/docs/api/Ext.JSON.html @@ -0,0 +1,72 @@ +Ext.JSON | Ext JS 4.0 Documentation +
For up to date documentation and features, visit +http://docs.sencha.com/ext-js/4-0

Sencha Documentation

+ + + + + +

Modified version of Douglas Crockford"s json.js that doesn"t +mess with the Object prototype +http://www.json.org/js.html

+
Defined By

Methods

 
decode( +String json, [Boolean safe]) + : Object
Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError unless the sa...

Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError unless the safe option is set.

+

Parameters

  • json : String

    The JSON string

    +
  • safe : Boolean

    (optional) Whether to return null or throw an exception if the JSON is invalid.

    +

Returns

  • Object   

    The resulting object

    +
 
encode( +Mixed o) + : String

Encodes an Object, Array or other value

+

Encodes an Object, Array or other value

+

Parameters

  • o : Mixed

    The variable to encode

    +

Returns

  • String   

    The JSON string

    +
 
encodeDate( +Date d) + : String
Encodes a Date. This returns the actual string which is inserted into the JSON string as the literal expression. +The ...

Encodes a Date. This returns the actual string which is inserted into the JSON string as the literal expression. +The returned value includes enclosing double quotation marks.

+ + +

The default return format is "yyyy-mm-ddThh:mm:ss".

+ + +

To override this:

+ + +
     Ext.JSON.encodeDate = function(d) {
+     return d.format('"Y-m-d"');
+     };
+     
+ +

Parameters

  • d : Date

    The Date to encode

    +

Returns

  • String   

    The string literal to use in a JSON string.

    +
\ No newline at end of file