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

linux - Mailx and Gmail nss config dir -

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

php - Mysql PK and FK char(36) vs int(10) -