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 -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -