sencha の writers exampleを修正しましたが、データベースのデータを更新できませんでした。サーバー側でそれを行うphpスクリプトがありますが、extjsによる更新呼び出しが表示されません。リーダーを使用してデータを取得していますが、正常に動作しますが、サーバーに送信するデータを更新しようとすると、呼び出しがありません。
これが私のコードです:
Ext.require([
'Ext.grid.*',
'Ext.data.*',
'Ext.util.*',
'Ext.state.*',
'Ext.form.*'
]);
Ext.onReady(function(){
// Define our data model
Ext.define('Empresa', {
extend: 'Ext.data.Model',
fields: [
{
name: 'Id',
type: 'int'
},
{
name: 'Nombre',
type: 'string'
},
{
name: 'Estado',
type: 'int'
},
{
dateFormat: 'd/m/Y',
name: 'FechaCreacion',
type: 'string'
}
]
});
// create the Data Store
var store = Ext.create('Ext.data.Store', {
// destroy the store if the grid is destroyed
autoDestroy: true,
model: 'Empresa',
//autoLoad: true,
proxy: {
type: 'jsonp',
api: {
read: 'http://fplweb2.localhost/empresa/listar/',
write: 'http://fplweb2.localhost/empresa/grabar/',
update: 'http://fplweb2.localhost/empresa/grabar/',
destroy: 'http://fplweb2.localhost/empresa/eliminar/',
},
reader: {
type: 'json',
root: 'listaempresas'
},
writer: {
type: 'json'
}
},
sorters: [{
property: 'start',
direction: 'ASC'
}]
});
store.load();
var rowEditing = Ext.create('Ext.grid.plugin.RowEditing', {
clicksToMoveEditor: 1,
autoCancel: false
});
// create the grid and specify what field you want
// to use for the editor at each column.
var grid = Ext.create('Ext.grid.Panel', {
store: store,
columns: [
{
xtype: 'gridcolumn',
dataIndex: 'Id',
text: 'Id',
editor: 'numberfield'
},
{
xtype: 'gridcolumn',
dataIndex: 'Nombre',
text: 'Nombre',
editor: 'textfield'
},
{
xtype: 'gridcolumn',
dataIndex: 'Estado',
text: 'Estado',
editor: 'numberfield'
},
{
xtype: 'gridcolumn',
dataIndex: 'FechaCreacion',
text: 'FechaCreacion',
editor: 'datefield'
}
],
renderTo: Ext.getBody(),
height: 600,
title: 'Lista de Empresas',
tbar: [{
text: 'Agregar Empresa',
handler : function() {
rowEditing.cancelEdit();
// Create a model instance
var r = Ext.create('Empresa', {
Id: store.getCount() + 1,
Nombre: 'Nueva Empresa',
Estado: '1',
FechaCreacion: Ext.Date.clearTime(new Date())
});
store.insert(0, r);
rowEditing.startEdit(0, 0);
console.log('Antes de' + store.getCount());
//store.sync();
console.log('Despues de: ' + store.getCount());
}
}, {
itemId: 'removeEmpresa',
text: 'Eliminar Empresa',
handler: function() {
var sm = grid.getSelectionModel();
rowEditing.cancelEdit();
store.remove(sm.getSelection());
if (store.getCount() > 0) {
sm.select(0);
}
},
disabled: true
}],
plugins: [rowEditing],
listeners: {
'selectionchange': function(view, records) {
grid.down('#removeEmpresa').setDisabled(!records.length);
}
}
});
});
これは、サーバー側のスクリプトがリーダーに返すものです。
{"listaempresas":[{"Id":"1","Nombre":"DyS Nevados SRL","Estado":"1","FechaCreacion":"2013-05-13 10:40:00"}]}
必要な投稿を読んだことがstore.sync()
ありますが、エラーが発生します。を使用してextj 4.2
います。ドキュメントを見ると、そのメソッドは存在しません。私が間違っていることは何ですか?