I want to Encode EXTjs Class to Json, But, I can't..
I use JSON.stringify, but that gives Exception with Type error.
How can I do that?
Thanks and Here my Code.
Ext.define('Text',{
    extend : 'Ext.Img',
    x : 50,
    y : 50,
    size : 100,
    text : 'Text',
    name : 'Text',
    src : ' ',
    tag : '',
    Events : []
});
var text = new Text();
var temp = JSON.stringify(text);
 
     
     
     
    