以下はコードです。input1store に読み込まれた値を確認したいのですが、どうすればよいですか?
をやってみalert(input1store)ましたが、オブジェクトを返すだけで、まったく役に立ちません。
var input1store = new Ext.data.Store({
    fields: [{name: 'name'}],
    proxy:{
        type: 'ajax',
        url: 'www.requesturl.com?format=json&source1',
        reader: {
            type: 'json',
            root: 'xml.result'
        }
    },
    autoLoad:false,
    sorters: [{property: 'name', direction: 'asc'}]
});