0

この例をコピーして、モデルとストアを定義します。 http://cdn.sencha.com/ext-4.1.1a-gpl/examples/dd/dnd_grid_to_grid.html

          proxy:{
            type:'ajax',
            api:{
                create: '/msDx2PlaylistAudio/create',
                update: '/msDx2PlaylistAudio/create',
                destroy:'/msDx2PlaylistAudio/delete'
            },

            url:'/msDx2Playlist/loadData',

            reader:{
                type:'json',
                root:'data'
            }

ご覧のとおり、API の作成、更新、破棄のアクションを設定します。しかし、グリッド行をドラッグ アンド ドロップすると、ストアは破棄およびロード アクションのみを実行します。ストアが作成を実行しない理由がわかりません...グリッドの自動同期が1つある別のアプリでは正常に動作します。

4

2 に答える 2

0

少なくとも 4.1.1 では、ドラッグしているレコードがphantomfalse に設定されていることが問題です。phantomドロップを処理するコードを以下に示します。新しいストアに挿入される前に、ドロップされたレコード フラグを true に設定するものがないことがわかります。

これはバグのようです。

Ext.define('Ext.grid.ViewDropZone', {
    extend: 'Ext.view.DropZone',

    handleNodeDrop : function(data, record, position) {
        var view = this.view,
            store = view.getStore(),
            index, records, i, len;

        // If the copy flag is set, create a copy of the models
        if (data.copy) {
            records = data.records;
            data.records = [];
            for (i = 0, len = records.length; i < len; i++) {
                data.records.push(records[i].copy());
            }
        } else {
            /*
             * Remove from the source store. We do this regardless of whether the store
             * is the same bacsue the store currently doesn't handle moving records
             * within the store. In the future it should be possible to do this.
             * Here was pass the isMove parameter if we're moving to the same view.
             */
            data.view.store.remove(data.records, data.view === view);
        }

        index = store.indexOf(record);

        // 'after', or undefined (meaning a drop at index -1 on an empty View)...
        if (position !== 'before') {
            index++;
        }
        store.insert(index, data.records);
        view.getSelectionModel().select(data.records);
    }
});
于 2013-02-26T12:24:40.783 に答える
0

autoSyncはデフォルトで false です。true に設定してください。

var secondGridStore = Ext.create('Ext.data.Store', { model: 'DataObject' autoSync:true });

于 2012-12-10T22:54:54.010 に答える