How to use extjs with php..?

Hi,

I m working on a php ajax project…am using extjs ajax package…

could any one guide me or give some samples links so that i can learn.

i tried with their site but i couldnt understand

Try something like this: (that uses Ext.data.Connection();
var conn = new Ext.data.Connection();
conn.request({
url: ‘url.php’,
method: ‘POST’,
params: {“metaID”: metaID, columnName: field},
success: function(responseObject) {
showHistoryDialog(responseObject.responseText);
},
failure: function() {
Ext.Msg.alert(‘Status’, ‘Unable to show history at this time. Please try again later.’);
}
});

thanks let me try with this one…am not sure…i may get more doubts…sorrry that :frowning:

You may also want to try the ExtJS Core API and search for ‘ajax’ or the 2.0 one… it doesn’t really get much more simpler than what they have there.

Hello,

i am searching for solutions to integrate Ext-Js (datagridd) to ZendFramework to implement a CRUD back office. If anyone has already had the opportunity to implement or dev this i would be glad to receive any advice on he subject

regards