ExtJS Ext.form.Panel с JSONP - PullRequest
       18

ExtJS Ext.form.Panel с JSONP

0 голосов
/ 13 января 2012

Можно ли использовать JSONP с Ext.form.Panel?

1 Ответ

0 голосов
/ 14 января 2012

Вы должны создать собственную привязку. Пример:

Ext.create('Ext.Panel', {
    renderTo: 'container',
    initComponent: function() {
        this.callParent(arguments);

        this.store = Ext.create('Ext.data.Store', {
            model: 'user',
            proxy: {
                callbackKey: 'callback',
                type: 'jsonp',
                url: 'http://localhost/data2.php',
                reader: {
                    type: 'json',
                    root: 'user'
                }
            },
            autoLoad: true,
            listeners: {
                load: function() {
                    this.onload();
                },
                scope: this
            }
        });
    },
    onload: function() {
        // do something with this.store.data
    },
    listeners: {
        destroy: function() {
            delete this.store;
        }
    }
});
...