Javascript/JSON code output issue -


in below code snippet can understand servlet getallusers getting called , servlet code json object being returned. please correct me if wrong. writer in below code mean output gets printed? thanks.

(ext.cmd.derive("amgui.store.userstore", ext.data.store, {     model: "amgui.model.usernamemodel",     constructor: function(a) {         var b = this;         = || {};         b.callparent([ext.apply({             autoload: true,             autodestroy: true,             storeid: "userstore",             proxy: {                 type: "ajax",                 url: "getallusers",                 reader: {                     type: "json",                     root: "userlist"                 },                 writer: {                     type: "json",                     root: "users",                     writeallfields: true                 }             }         }, a)])     } } 


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -