jquery - jqGrid clientArray -


i trying use jqgrid clientarray submit multiple updates @ once. (i trying update multiple rows in 1 go).

        onselectrow: function(id){             if (id && id !== lastsel) {                 jquery('#fnlusetaxlistings').saverow(lastsel, true, 'clientarray');                 jquery('#fnlusetaxlistings').editrow(id, true, null, null);                 lastsel = id;             }         }, 

this works fine, have no idea how retrieve clientarray , send server? if can post example of sending clientarray server, helpful.

thanks, ashish

there no "clientarray", there 'data' parameter object local data. see this or this answer examples.


Comments

Popular posts from this blog

c# - Is it possible to remove an existing registration from Autofac container builder? -

delphi - How do I identify what code is generating " '' is not a valid floating point value" error dialogue box -