-
22 May 2012 10:36 PM #1
how to get data from database to an ui screen in extjs
how to get data from database to an ui screen in extjs
Can any body give a sample example on" how to get data from database to an UI screen in ExtJs"
-
22 May 2012 10:41 PM #2
Use Ext.Ajax
Use Ext.Ajax
HI!
You may want to know about Ext.Ajax .This class is used to communicate with your server side code. It can be used as follows:
For more specifications, check this:- http://docs.sencha.com/ext-js/4-0/#!/api/Ext.AjaxCode:Ext.Ajax.request({ url: 'page.php', params: { id: 1 }, success: function(response){ var text = response.responseText; // process server response here } });
sword-it.com, Sencha Developer House in Turkey - Istanbul University Technopark Suite 204.
-
22 May 2012 10:52 PM #3
Hi sword-it,
that's great but can you give an example using servlet ??
-
23 May 2012 7:58 AM #4
json data
json data
Can you put your sample JSON data?


Reply With Quote