Hi,
i have JsonStore which is having 6 fields and 200 records. its working fine but somehow one filed in jsonstore is coming null don't know why? but in the database it is having the value which i want to store in json.
here is my store.
========================================
PHP Code:
var URLdata = 'php_file/jsonRecord.php';
var storedata = new Ext.data.JsonStore({
fields: ['hnum', 'hcity','hstate' ,'hname' ,'hportal','hprocessing']
,root: 'hjsonObj'
,proxy: new Ext.data.HttpProxy({ url:URLdata ,method:'GET'})});
storedata.load();
==========================
Please help me.
Thanks